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