Automate package management with these awesome scripts 08 September 2024, 18:47:59 Here are commands that will make you look like a hacker Requirements: FZF Xargs (it's in the package findutils)Pacman (of course) For installing: pacman -Slq | fzf --multi --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S"For uninstalling:pacman -Qq | fzf --multi --preview 'pacman -Qi {1}' | xargs -ro sudo pacman -RFor purging:pacman -Qq | fzf --multi --preview 'pacman -Qi {1}' | xargs -ro sudo pacman -Rnsit is recommended to bind them to an alias The result: Last Edit: 08 September 2024, 18:53:08 by Altian 3 Likes