David McKinney
5862b9dbd1
- Updated sway to 1.5.1 - Updated sway config with color theme, fixes, etc - Patched sway default wayland display socket to use wayland-0 as first socket - Updated wlroots to 0.12.0 - Updated wdisplays to more recent commit - Fixed sway-session-switcher to work with newer gnome-session - Fixed dependency in swaybg - Added new rust launcher (sgmenu), removed old one (sgflow) - Added gtk-layer-shell recipe, needed for sgmenu, useful for other things - Removed unused sgstatus recipe
32 lines
856 B
BlitzBasic
32 lines
856 B
BlitzBasic
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=dfc67e5b1fa10ebb4b70eb0c0ca67bea"
|
|
|
|
SRCREV = "5ae4f65045c04df7ad2d87142b4064803d97a73e"
|
|
|
|
#PV = "1.4+git${SRCPV}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
SRC_URI = "git://github.com/swaywm/sway;protocol=https \
|
|
file://config \
|
|
file://0001-Reinstate-wayland-0-as-starting-display-socket-for-C.patch \
|
|
"
|
|
|
|
UPSTREAM_CHECK_COMMITS = "1"
|
|
|
|
inherit meson
|
|
|
|
DEPENDS = "dbus cairo pango wlroots libinput libxkbcommon wayland wayland-native libpam libcap json-c libpcre gdk-pixbuf"
|
|
|
|
FILES_${PN} += "\
|
|
${datadir}/wayland-sessions/sway.desktop \
|
|
"
|
|
|
|
do_install_append() {
|
|
rm ${D}${sysconfdir}/sway/config
|
|
install -m 644 ${WORKDIR}/config ${D}${sysconfdir}/sway/config
|
|
}
|
|
|
|
EXTRA_OEMESON += "-Ddefault-wallpaper=false -Dzsh-completions=false -Dbash-completions=false -Dfish-completions=false"
|
|
|
|
|