latest user config

This commit is contained in:
2024-09-13 14:28:50 +02:00
parent cdcaee5943
commit 2f402fe686
59 changed files with 2336 additions and 670 deletions
+3 -6
View File
@@ -54,14 +54,11 @@ function toggle_vpn_connection() {
if [[ $result = ${ACTIVE_PREFIX}* ]]; then
feedback=$(nmcli connection down "$connection")
dunstify "VPN Status '$connection'" "$feedback" --replace=553
# hyprctl notify 1 5000 0 " VPN Status '$connection' "
notify-send "VPN Status '$connection'" "$feedback"
else
kitty --class "kitty-vpn" --title "VPN Connection" nmcli connection --ask up "$connection"
alacritty --class "vpn-prompt" --title "VPN Connection" -e nmcli connection --ask up "$connection"
#feedback=$(nmcli connection up "$connection")
dunstify "VPN Status '$connection'" "" --replace=553
#hyprctl notify 1 5000 0 " VPN Status '$connection' "
notify-send "VPN Status '$connection'" "Trying to connect"
fi
}