Skip to content

Commit

Permalink
misc: fix autocompletions for meson (hyprctl/hyprpm)
Browse files Browse the repository at this point in the history
Signed-off-by: Florian sp1rit <[email protected]>
  • Loading branch information
vaxerski committed Apr 15, 2024
1 parent 2ea3678 commit d1c2d52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hyprctl/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ 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.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion'), install_tag: 'runtime', rename: 'hyprctl')
install_data('hyprctl.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime')
install_data('hyprctl.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprctl')
2 changes: 1 addition & 1 deletion hyprpm/src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ 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.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion'), 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')

0 comments on commit d1c2d52

Please sign in to comment.