diff options
Diffstat (limited to '.bash/aliases.bash')
-rw-r--r-- | .bash/aliases.bash | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.bash/aliases.bash b/.bash/aliases.bash index 090a572..85b8737 100644 --- a/.bash/aliases.bash +++ b/.bash/aliases.bash @@ -105,7 +105,9 @@ xstat() { done } # ----- PACKAGE MANAGERS ----- # -if [ -x "/usr/bin/pikaur" ];then +if [ -x "/usr/bin/paru" ];then + alias pkgclean="paru --noconfirm -Sc" +elif [ -x "/usr/bin/pikaur" ];then alias pkgclean="pikaur --noconfirm -Sc" elif [ -x "/usr/bin/pacman" ];then alias pkgclean="/usr/bin/sudo /usr/bin/pacman --noconfirm -Sc" @@ -200,6 +202,11 @@ if command -v podman >/dev/null;then alias pnd="podman network disconnect" alias ppd="podman pod stop" fi +# ----- PUPPET + RUBY ----- # +# ...yeah, I'm mostly doing ruby stuff for Puppet, erm I mean +# OpenVox (now that Perforce have turned the Puppet world to a burning heap of garbage) +alias bake="bundle exec rake" +# ----- OTHER STUFF ----- # for cmmd in batcat bat; do if command -v "$cmmd" > /dev/null; then # shellcheck disable=SC2139 |