Skip to content

Instantly share code, notes, and snippets.

View lucasrdrgs's full-sized avatar

Lucas Rodrigues lucasrdrgs

  • Hubla
  • Campinas - São Paulo
  • 18:39 (UTC -03:00)
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);
;;