dotfiles

:)
git clone https://git.sr.ht/~ashymad/dotfiles
Log | Files | Refs | Submodules | LICENSE

commit 3d0997360b3eeece612f30a80a3dd6d50c204702
parent 4511fa1e7f27a871b36841aa869bbe16c25edb82
Author: Ashymad <czilukim@o2.pl>
Date:   Fri, 27 Apr 2018 11:06:02 +0200

Check contrib for scripts as well

Diffstat:
Mfish/.config/fish/functions/aur.fish | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/fish/.config/fish/functions/aur.fish b/fish/.config/fish/functions/aur.fish @@ -1,6 +1,8 @@ function aur --wraps aur if test -f "$HOME/.config/fish/functions/aur-$argv[1].fish" eval "aur-$argv[1]" $argv[2..-1] + else if test -f "/usr/share/aurutils/contrib/aur-$argv[1]" + bash -- "/usr/share/aurutils/contrib/aur-$argv[1]" $argv[2..-1] else /usr/bin/aur $argv end