Connect to VPN before starting i3

This commit is contained in:
flyingscorpio@arch-desktop 2021-01-22 09:32:30 +01:00
parent fe38d289bd
commit bd176da680
2 changed files with 11 additions and 2 deletions

View file

@ -98,7 +98,9 @@ pull_from_repos() {
}
hello() {
sudo protonvpn c --cc NL
if command -v protonvpn >/dev/null 2>&1; then
sudo protonvpn c --cc NL
fi
system_update
echo -n "Do you want to pull from you git repos? [y/N] "
@ -114,7 +116,10 @@ hello() {
}
bye() {
sudo protonvpn d && shutdown now
if command -v protonvpn >/dev/null 2>&1; then
sudo protonvpn d
fi
shutdown now
}
# Use python to make simple calculations, like 'calc 24/8'

View file

@ -42,4 +42,8 @@ if command -v numlockx >/dev/null 2>&1; then
numlockx &
fi
if command -v protonvpn >/dev/null 2>&1; then
protonvpn c -f
fi
exec i3