Skip to content

Instantly share code, notes, and snippets.

View daemonspudguy's full-sized avatar
💭
existent

Jacob Alexander Tice daemonspudguy

💭
existent
View GitHub Profile
@daemonspudguy
daemonspudguy / apt-pac.sh
Created August 1, 2019 03:07 — forked from cookiengineer/apt-pac.sh
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);
;;
@daemonspudguy
daemonspudguy / apt-pac.sh
Created August 1, 2019 03:07 — forked from cookiengineer/apt-pac.sh
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);
;;