2024-04-14 18:41:15 -07:00
|
|
|
#!/usr/bin/env fish
|
|
|
|
|
|
|
|
abbr -a y --position command yay
|
|
|
|
abbr -a yi --position command "yay -S"
|
|
|
|
abbr -a yr --position command "yay -R"
|
|
|
|
abbr -a yc --position command "yay -Sc"
|
|
|
|
abbr -a yu --position command "yay -Syu"
|
2024-06-02 21:02:16 -07:00
|
|
|
|
|
|
|
function yay-group-missing --argument-names group
|
|
|
|
comm -23 <(yay -Sg $group | awk '{print $2}' | sort) <(yay -Qq | sort)
|
|
|
|
end
|