From c7b87e0aed1c7d2b02027fe5761987c2d8a78946 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet Date: Tue, 9 Apr 2024 14:25:14 +0800 Subject: [PATCH] hyprctl: fix fish completions --- hyprctl/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyprctl/meson.build b/hyprctl/meson.build index 98558b82..1b47a339 100644 --- a/hyprctl/meson.build +++ b/hyprctl/meson.build @@ -3,5 +3,5 @@ executable('hyprctl', 'main.cpp', ) 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.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')