diff options
author | Vaxry <[email protected]> | 2023-04-09 13:48:20 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-04-09 13:48:20 +0100 |
commit | 046ad79d11dbccc90ade48d63aaa340655d999fb (patch) | |
tree | 7ffb5ae0d0abd09cba72e42be5a27585531090e4 /Makefile | |
parent | e4e653ada6fc729efad3f6a0d49cf72b94c43b6c (diff) | |
download | Hyprland-046ad79d11dbccc90ade48d63aaa340655d999fb.tar.gz Hyprland-046ad79d11dbccc90ade48d63aaa340655d999fb.zip |
GlobalShortcuts protocol impl (#1886)
Implements the `hyprland-global-shortcuts-v1` protocol
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -101,6 +101,16 @@ hyprland-toplevel-export-v1-protocol.c: hyprland-toplevel-export-v1-protocol.o: hyprland-toplevel-export-v1-protocol.h +hyprland-global-shortcuts-v1-protocol.h: + $(WAYLAND_SCANNER) server-header \ + subprojects/hyprland-protocols/protocols/hyprland-global-shortcuts-v1.xml $@ + +hyprland-global-shortcuts-v1-protocol.c: + $(WAYLAND_SCANNER) private-code \ + subprojects/hyprland-protocols/protocols/hyprland-global-shortcuts-v1.xml $@ + +hyprland-global-shortcuts-v1-protocol.o: hyprland-global-shortcuts-v1-protocol.h + linux-dmabuf-unstable-v1-protocol.h: $(WAYLAND_SCANNER) server-header \ $(WAYLAND_PROTOCOLS)/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml $@ @@ -206,7 +216,7 @@ uninstall: rm -f ${PREFIX}/share/man/man1/Hyprland.1 rm -f ${PREFIX}/share/man/man1/hyprctl.1 -protocols: xdg-shell-protocol.o wlr-layer-shell-unstable-v1-protocol.o wlr-screencopy-unstable-v1-protocol.o idle-protocol.o ext-workspace-unstable-v1-protocol.o pointer-constraints-unstable-v1-protocol.o tablet-unstable-v2-protocol.o wlr-output-power-management-unstable-v1-protocol.o linux-dmabuf-unstable-v1-protocol.o hyprland-toplevel-export-v1-protocol.o wlr-foreign-toplevel-management-unstable-v1-protocol.o fractional-scale-v1-protocol.o text-input-unstable-v1-protocol.o +protocols: xdg-shell-protocol.o wlr-layer-shell-unstable-v1-protocol.o wlr-screencopy-unstable-v1-protocol.o idle-protocol.o ext-workspace-unstable-v1-protocol.o pointer-constraints-unstable-v1-protocol.o tablet-unstable-v2-protocol.o wlr-output-power-management-unstable-v1-protocol.o linux-dmabuf-unstable-v1-protocol.o hyprland-toplevel-export-v1-protocol.o wlr-foreign-toplevel-management-unstable-v1-protocol.o fractional-scale-v1-protocol.o text-input-unstable-v1-protocol.o hyprland-global-shortcuts-v1-protocol.o fixwlr: sed -i -E 's/(soversion = 12)([^032]|$$)/soversion = 12032/g' subprojects/wlroots/meson.build |