From f6786f04d2bf46baf01b2a1a3686871ef46f59e9 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Tue, 9 Apr 2024 16:10:33 +0800 Subject: [PATCH] hyprpm: install shell completions --- hyprpm/src/meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hyprpm/src/meson.build b/hyprpm/src/meson.build index 0adae7aa..521166c7 100644 --- a/hyprpm/src/meson.build +++ b/hyprpm/src/meson.build @@ -8,3 +8,7 @@ executable('hyprpm', src, ], install : true ) + +install_data('../hyprpm.bash', install_dir: join_paths(get_option('datadir'), 'bash-completions'), install_tag: 'runtime', rename: 'hyprpm') +install_data('../hyprpm.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime') +install_data('../hyprpm.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprpm')