diff options
author | Vaxry <[email protected]> | 2024-10-08 16:59:15 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-10-08 16:59:15 +0100 |
commit | 1bf63dfdcd76c09137b4647f9af2c5ebc9fc6e34 (patch) | |
tree | e423ee76ef6d27a1178349d3c45737ad4191808d /protocols | |
parent | e0cfbec66b97edb2957508152f32e77a1b181afc (diff) | |
download | Hyprland-1bf63dfdcd76c09137b4647f9af2c5ebc9fc6e34.tar.gz Hyprland-1bf63dfdcd76c09137b4647f9af2c5ebc9fc6e34.zip |
protocols: Add support for hyprland-ctm-control-v1 (#8023)
* initial ctm support
* flake.lock: update
* Meson: bump required versions and add ctm proto
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/meson.build b/protocols/meson.build index 3fa2ef2f..2c0d06d1 100644 --- a/protocols/meson.build +++ b/protocols/meson.build @@ -7,7 +7,7 @@ wayland_protos = dependency( hyprland_protos = dependency( 'hyprland-protocols', - version: '>=0.2', + version: '>=0.4', fallback: 'hyprland-protocols', ) @@ -36,6 +36,7 @@ protocols = [ hyprland_protocol_dir / 'protocols/hyprland-global-shortcuts-v1.xml', hyprland_protocol_dir / 'protocols/hyprland-toplevel-export-v1.xml', hyprland_protocol_dir / 'protocols/hyprland-focus-grab-v1.xml', + hyprland_protocol_dir / 'protocols/hyprland-ctm-control-v1.xml', wayland_protocol_dir / 'staging/tearing-control/tearing-control-v1.xml', wayland_protocol_dir / 'staging/fractional-scale/fractional-scale-v1.xml', wayland_protocol_dir / 'unstable/xdg-output/xdg-output-unstable-v1.xml', |