Make reboot a function not an alias

This commit is contained in:
flyingscorpio@clevo 2022-02-11 19:38:12 +01:00
parent 2af1f0f61a
commit 01c088d308

View file

@ -168,7 +168,12 @@ bye() {
sudo shutdown now
}
alias reboot='sudo protonvpn d; sudo reboot'
reboot() {
if command -v protonvpn >/dev/null 2>&1; then
sudo protonvpn d
fi
sudo reboot
}
# Open a map with location after using whois
whois-firefox() {