1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 08:58:52 +00:00
dotfiles/.config/fish/functions/clean.fish

22 lines
598 B
Fish
Raw Normal View History

2020-07-11 23:00:19 +00:00
# Defined in /tmp/fish.n1quHQ/clean.fish @ line 2
2018-11-15 01:01:37 +00:00
function clean
2020-03-01 23:54:26 +00:00
up
fc-cache -f -v
2020-02-15 16:52:47 +00:00
s sync
j -c
se clean -y
se dc -y
se rmo -y
se rdb -y
s journalctl --vacuum-size=1K
bleachbit -c (bleachbit -l|grep -Ev 'system.free_disk_space|transmission|system.memory|firefox')
s bleachbit -c (bleachbit -l|grep -Ev 'system.free_disk_space|transmission|system.memory|firefox')
2020-02-15 16:52:47 +00:00
rm -r ~/.cache/*
rm -r ~/.nv/*
rm -r ~/.local/share/nvim/swap/
rm -r $D/Games/Emulators/*/canary
rm -r $D/Games/Emulators/*/*og*
2020-07-11 23:00:19 +00:00
s solbuild delete-cache
2020-02-15 16:52:47 +00:00
s sync
2018-11-15 01:01:37 +00:00
end