mirror of
https://codeberg.org/flk/meta-wayland.git
synced 2024-11-20 04:18:25 +01:00
3c221ee139
- add support for hyprland
28 lines
699 B
BlitzBasic
28 lines
699 B
BlitzBasic
SUMMARY = "Output management utility for sway Wayland compositor, inspired by wdisplays and wlay."
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=2e53cad864b84be468b2fc0b511942ce"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/nwg-piotr/nwg-displays.git;protocol=https;branch=master \
|
|
"
|
|
|
|
RDEPENDS:${PN} = "\
|
|
gtk-layer-shell \
|
|
python3 \
|
|
python3-pygobject \
|
|
python-i3ipc \
|
|
"
|
|
|
|
inherit setuptools3
|
|
|
|
S = "${WORKDIR}/git"
|
|
PV = "0.3.1"
|
|
SRCREV = "832505d0c2053733c6feba379af0846b9e4ff63e"
|
|
|
|
do_install:append() {
|
|
install -d ${D}${datadir}/pixmaps ${D}${datadir}/applications
|
|
install -m 644 ${S}/nwg-displays.desktop ${D}${datadir}/applications
|
|
install -m 644 ${S}/nwg-displays.svg ${D}${datadir}/pixmaps
|
|
}
|
|
|