diff options
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meson.build b/meson.build index beaebf2..7a89d15 100644 --- a/meson.build +++ b/meson.build @@ -31,11 +31,23 @@ shader_location = join_paths( '' ) +completion_location = join_paths( + get_option('prefix'), + get_option('datadir'), + 'bash-completion', + 'completions' +) + install_subdir( 'shaders', install_dir: data_location ) +install_data( + 'completions/greetd-mini-wl-greeter', + install_dir: completion_location +) + add_project_arguments( [ '-pedantic', |