#!/bin/bash set -e sudo -v sudo pacman -Syu --noconfirm yay -Syu --noconfirm sudo paccache -r yay -Scc --noconfirm || true rm -rf ~/.cache/yay/* #rm -rf ~/Downloads/* rm -rf ~/.cache/* sudo fd . /tmp --max-depth 1 \ --type f --type d \ --exclude 'systemd-private-*' \ --changed-before 7d \ -0 | while IFS= read -r -d '' item; do rm -rf -- "$item" done sudo fd . /var/tmp --max-depth 1 \ --type f --type d \ --exclude 'systemd-private-*' \ --changed-before 7d \ -0 | while IFS= read -r -d '' item; do rm -rf -- "$item" done sudo rm -rf ~/.local/share/Trash/* sudo pacman -Qdtq | sudo pacman -Rns - || true sudo journalctl --vacuum-time=3d