Add recursive parameter to autoremove alias

This commit is contained in:
Marko Korhonen 2020-03-24 10:43:19 +02:00
parent dbec38a263
commit 1743bb04c4
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

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 }