aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets
diff options
context:
space:
mode:
authorAlfred Wingate <[email protected]>2023-07-27 02:10:08 +0300
committerMihai Fufezan <[email protected]>2023-07-27 13:25:40 +0300
commit2ea7d10d049e26c9829912da1d16f7f35f5b265d (patch)
tree4b0c07c39c23df6645a0e0cafa51b3df7e94d5ef /assets
parentef26f711c90fd1bbf912e76b298718a84d71cc70 (diff)
downloadHyprland-2ea7d10d049e26c9829912da1d16f7f35f5b265d.tar.gz
Hyprland-2ea7d10d049e26c9829912da1d16f7f35f5b265d.zip
assets/meson.build: install new wallpapers
* Previous changes forgot to update meson with the new wallpapers. https://github.com/hyprwm/Hyprland/commit/70dae78c1b5b17288a3e343b87ca6d10244ee937 https://github.com/hyprwm/Hyprland/commit/9bad2a81809bdaa2020006427af2110b6a912c3b Signed-off-by: Alfred Wingate <[email protected]>
Diffstat (limited to 'assets')
-rw-r--r--assets/meson.build8
1 files changed, 5 insertions, 3 deletions
diff --git a/assets/meson.build b/assets/meson.build
index cc0577d3..ba2c77bd 100644
--- a/assets/meson.build
+++ b/assets/meson.build
@@ -1,5 +1,7 @@
-wallpapers = ['wall_2K.png', 'wall_4K.png', 'wall_8K.png']
+wallpaper_types = ['', 'anime_', 'anime2_']
-foreach wallpaper : wallpapers
- install_data(wallpapers, install_dir: join_paths(get_option('datadir'), 'hyprland'), install_tag: 'runtime')
+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
endforeach