mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
11 lines
202 B
Bash
Executable File
11 lines
202 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# take all the cache and remove useless packages
|
|
sudo pacman -Sc
|
|
sudo pacman -Scc
|
|
paccache -r
|
|
sudo pacman -Rns $(pacman -Qtdq)
|
|
|
|
# list cache
|
|
sudo du -sh ~/.cache/
|
|
rm -rf ~/.cache/* |