From d0d1ba5918206f16128e56988dd4db5d6d143338 Mon Sep 17 00:00:00 2001 From: postsolar <120750161+postsolar@users.noreply.github.com> Date: Mon, 8 Apr 2024 21:13:45 +0300 Subject: [PATCH] hyprctl: fix zsh completions The file missed a line required by all ZSH completions in order to be automatically loaded --- hyprctl/hyprctl.zsh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hyprctl/hyprctl.zsh b/hyprctl/hyprctl.zsh index 90212ce9..5e2a475b 100644 --- a/hyprctl/hyprctl.zsh +++ b/hyprctl/hyprctl.zsh @@ -1,3 +1,5 @@ +#compdef hyprctl + _hyprctl_cmd_2 () { hyprctl monitors | grep Monitor | awk '{ print $2 }' }