aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2024-01-30 01:28:07 +0200
committerMihai Fufezan <[email protected]>2024-01-30 01:28:07 +0200
commit3d0d3b634332419995799cf5677bd56e6c0d967c (patch)
treeaee3381b6e61c8e257478861e35732a0aae74dea
parent2e3f0d5991874edb01f1bfe4ffc75701f8b398dc (diff)
downloadHyprland-3d0d3b634332419995799cf5677bd56e6c0d967c.tar.gz
Hyprland-3d0d3b634332419995799cf5677bd56e6c0d967c.zip
Meson: fix wallpaper installation
-rw-r--r--assets/meson.build8
1 files changed, 3 insertions, 5 deletions
diff --git a/assets/meson.build b/assets/meson.build
index cdfafabb..8c4a60ec 100644
--- a/assets/meson.build
+++ b/assets/meson.build
@@ -1,9 +1,7 @@
-wallpaper_types = ['', 'anime_', 'anime2_']
+wallpapers = ['0', '1', '2']
-foreach type : wallpaper_types
- foreach size : [2, 4, 8]
- install_data(f'wall_@type@@[email protected]', install_dir: join_paths(get_option('datadir'), 'hyprland'), install_tag: 'runtime')
- endforeach
+foreach type : wallpapers
+ install_data(f'wall@[email protected]', install_dir: join_paths(get_option('datadir'), 'hyprland'), install_tag: 'runtime')
endforeach
install_data('hyprland-portals.conf', install_dir: join_paths(get_option('datadir'), 'xdg-desktop-portal'), install_tag: 'runtime')