diff options
author | Mihai Fufezan <[email protected]> | 2024-11-11 10:05:01 +0200 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-11-11 16:52:42 +0200 |
commit | ff411658e8b217cadf69887f7313d6fd2fc417f2 (patch) | |
tree | 83fc695b0c349814dae3959b973c0694ac9ddab6 /meson_options.txt | |
parent | 943c7d18cc7c9300e1a6b4b859558b8c7ac540cd (diff) | |
download | Hyprland-ff411658e8b217cadf69887f7313d6fd2fc417f2.tar.gz Hyprland-ff411658e8b217cadf69887f7313d6fd2fc417f2.zip |
Lock uwsm desktop file behind feature flag
The file in the repo cannot be used in NixOS due to missing full paths,
and the fact that `uwsm` does not have access to `PATH` to find the
listed binaries. Might be useful in other situations as well.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt index d8c9d5e6..9b64fb32 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,5 @@ option('xwayland', type: 'feature', value: 'auto', description: 'Enable support for X11 applications') option('systemd', type: 'feature', value: 'auto', description: 'Enable systemd integration') +option('uwsm', type: 'feature', value: 'enabled', description: 'Enable uwsm integration (only if systemd is enabled)') option('legacy_renderer', type: 'feature', value: 'disabled', description: 'Enable legacy renderer') option('tracy_enable', type: 'boolean', value: false , description: 'Enable profiling') |