diff options
author | Phil Jones <philj56@gmail.com> | 2021-11-01 11:56:19 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-11-01 12:10:54 +0000 |
commit | 34ed719719b73bc9eeeb934833971fd04141f5ef (patch) | |
tree | 345708fd67081bbf8d47942d266dacd29bbb4a4b /meson.build | |
parent | 8fc10eae44b388bee9e5bfdbc0a59c6c7d69ddd8 (diff) |
Add bash completion.
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', |