Edit clean function and add update function

This commit is contained in:
Phantop 2018-11-14 22:20:19 -05:00
parent 049de6102d
commit c9acebd464
2 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Defined in /tmp/fish.cXbpuG/clean.fish @ line 2
# Defined in /tmp/fish.p3ZSYS/clean.fish @ line 2
function clean
s printf \
updatefonts
@ -10,5 +10,6 @@ function clean
bleachbit -c (bleachbit -l|grep -v system.free_disk_space | grep -v transmission)
s bleachbit -c (bleachbit -l|grep -v system.free_disk_space | grep -v transmission)
rm -r ~/.cache/*
rm -r ~/.nv/*
rm -r ~/.local/share/nvim/swap/
end

View File

@ -0,0 +1,8 @@
# Defined in /tmp/fish.xOFV2s/gupall.fish @ line 1
function gupall
for i in *
cd $i
git pull
cd ..
end
end