Add recursive parameter to autoremove alias

This commit is contained in:
Marko Korhonen 2020-03-24 10:43:19 +02:00
parent e1d2e34d2d
commit 7378d4fd86

View file

@ -129,7 +129,7 @@ update() { yay -Syu --devel firefox-nightly }
updateall() { update; plugupdate; sudo awman-update }
# remove unneeded packages
autoremove() { sudo pacman -R $(pacman -Qdtq) }
autoremove() { sudo pacman -Rns $(pacman -Qdtq) }
# turn on usb tethering on my android phone
tether() { adb shell su -c "service call connectivity 33 i32 1 s16 me" > /dev/null }