Skip to content

Instantly share code, notes, and snippets.

View Ruakker's full-sized avatar
😴
Sleepy

Ruakker Ruakker

😴
Sleepy
View GitHub Profile
@cookiengineer
cookiengineer / apt-pac.sh
Last active September 11, 2023 20:06
APT-PAC - pacman with APT syntax
#!/bin/bash
# Save this file as /usr/bin/apt-pac and chmod +x it.
case "$1" in
autoremove)
pacman -Rns $(pacman -Qdtq);
;;