hyprctl: Add shell completions (#5404)

This commit is contained in:
LOSEARDES77
2024-04-04 09:21:20 +02:00
committed by GitHub
parent b7d71bc0e1
commit 1b43cd5231
6 changed files with 770 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
executable('hyprctl', 'main.cpp',
install: true
)
install_data('hyprctl.bash', install_dir: join_paths(get_option('datadir'), 'bash-completions'), install_tag: 'runtime', rename: 'hyprctl')
install_data('hyprctl.fish', install_dir: join_paths(get_option('datadir'), 'fish/completions'), install_tag: 'runtime')
install_data('hyprctl.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprctl')