aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2024-09-11 19:00:47 +0300
committerMihai Fufezan <[email protected]>2024-09-11 19:09:17 +0300
commite01da1fd7a50ab0baeaba074f2a14c826b05bf1c (patch)
treecc16aa35e2c6364e40934ae5df868beef8584fb9 /assets
parent7a8c013edcbc59804a98fffa0436efcb268e1cda (diff)
downloadHyprland-e01da1fd7a50ab0baeaba074f2a14c826b05bf1c.tar.gz
Hyprland-e01da1fd7a50ab0baeaba074f2a14c826b05bf1c.zip
Meson: format
Diffstat (limited to 'assets')
-rw-r--r--assets/install/meson.build6
-rw-r--r--assets/meson.build7
2 files changed, 11 insertions, 2 deletions
diff --git a/assets/install/meson.build b/assets/install/meson.build
index 1d4fb917..45076469 100644
--- a/assets/install/meson.build
+++ b/assets/install/meson.build
@@ -2,5 +2,9 @@ globber = run_command('sh', '-c', 'find . -type f -not -name "*.build"', check:
files = globber.stdout().strip().split('\n')
foreach file : files
- install_data(file, install_dir: join_paths(get_option('datadir'), 'hypr'), install_tag: 'runtime')
+ install_data(
+ file,
+ install_dir: join_paths(get_option('datadir'), 'hypr'),
+ install_tag: 'runtime',
+ )
endforeach
diff --git a/assets/meson.build b/assets/meson.build
index 0648037a..2a28121d 100644
--- a/assets/meson.build
+++ b/assets/meson.build
@@ -1,2 +1,7 @@
-install_data('hyprland-portals.conf', install_dir: join_paths(get_option('datadir'), 'xdg-desktop-portal'), install_tag: 'runtime')
+install_data(
+ 'hyprland-portals.conf',
+ install_dir: join_paths(get_option('datadir'), 'xdg-desktop-portal'),
+ install_tag: 'runtime',
+)
+
subdir('install')