dotfiles

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

commit afba718e8f1407b6a68196bb60934db259aad5a9
parent 78d7da7c3b1f0cf575c692daf08d434394ac767c
Author: Ashymad <czilukim@o2.pl>
Date:   Thu, 22 Feb 2018 17:43:47 +0100

aur wrapper

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

diff --git a/.config/fish/functions/aur.fish b/.config/fish/functions/aur.fish @@ -0,0 +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 + /usr/bin/aur $argv + end +end +