diff options
author | Lincoln Yuji de Oliveira <[email protected]> | 2024-07-04 08:21:07 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-07-04 14:21:07 +0300 |
commit | 0a6e83005f1910b5c1ec78476fcffc05af47833a (patch) | |
tree | 6bc6a6877e121ef4ab05f63f08c49a4bfa3a90b8 /hyprpm/hyprpm.zsh | |
parent | e894d5e964994e988ef75de4d95e98c9503235e1 (diff) | |
download | Hyprland-0a6e83005f1910b5c1ec78476fcffc05af47833a.tar.gz Hyprland-0a6e83005f1910b5c1ec78476fcffc05af47833a.zip |
Completions: use only awk (#6763)
Diffstat (limited to 'hyprpm/hyprpm.zsh')
-rw-r--r-- | hyprpm/hyprpm.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyprpm/hyprpm.zsh b/hyprpm/hyprpm.zsh index e355a1fa..854e8426 100644 --- a/hyprpm/hyprpm.zsh +++ b/hyprpm/hyprpm.zsh @@ -1,7 +1,7 @@ #compdef hyprpm _hyprpm_cmd_0 () { - hyprpm list | grep Plugin | awk '{print $4}' + hyprpm list | awk '/Plugin/{print $4}' } _hyprpm () { |