diff options
author | Vaxry <[email protected]> | 2023-08-26 17:12:21 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-08-26 17:12:21 +0200 |
commit | 4a41d013a27c9919ed41a50c43c4224d8443a415 (patch) | |
tree | f404e8d5d70d48dac21dcca836cfd8310f873335 /assets | |
parent | 299d201e562c0d0d1530d1559ff33802a1470815 (diff) | |
download | Hyprland-4a41d013a27c9919ed41a50c43c4224d8443a415.tar.gz Hyprland-4a41d013a27c9919ed41a50c43c4224d8443a415.zip |
internal: Fix XDP multi-portal issues (#3077)
* add a hyprland portals conf
* remove portal checks
* typo
* Nix: remove portal patch
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to 'assets')
-rw-r--r-- | assets/hyprland-portals.conf | 2 | ||||
-rw-r--r-- | assets/meson.build | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/assets/hyprland-portals.conf b/assets/hyprland-portals.conf new file mode 100644 index 00000000..2ec1f0de --- /dev/null +++ b/assets/hyprland-portals.conf @@ -0,0 +1,2 @@ +[preferred] +default=hyprland
\ No newline at end of file diff --git a/assets/meson.build b/assets/meson.build index ba2c77bd..cdfafabb 100644 --- a/assets/meson.build +++ b/assets/meson.build @@ -5,3 +5,5 @@ foreach type : wallpaper_types install_data(f'wall_@type@@[email protected]', install_dir: join_paths(get_option('datadir'), 'hyprland'), install_tag: 'runtime') endforeach endforeach + +install_data('hyprland-portals.conf', install_dir: join_paths(get_option('datadir'), 'xdg-desktop-portal'), install_tag: 'runtime') |