2023-10-28 21:38:26 +02:00
|
|
|
#!/bin/bash
|
2023-11-01 18:05:46 +01:00
|
|
|
########################################################
|
|
|
|
########################################################
|
|
|
|
# Wire-G App for simple management a Wireguard Tunnel ##
|
|
|
|
# Author: Désiré Werner Menrath ##
|
|
|
|
# Email: polunga40@unity-mail.de ##
|
|
|
|
# Translate German to English with LibreTranslate ##
|
|
|
|
# Translatefiles edit with Poedit ##
|
|
|
|
# Use without warranty! ##
|
|
|
|
########################################################
|
|
|
|
########################################################
|
|
|
|
|
|
|
|
Encoding=UTF-8
|
|
|
|
|
|
|
|
# i18n - Internationalization - Internationalisierung
|
|
|
|
|
|
|
|
export textdomain=wire-g
|
|
|
|
export textdomaindir="/usr/share/locale"
|
2023-10-28 21:38:26 +02:00
|
|
|
|
|
|
|
############################################################################################################
|
|
|
|
############################################################################################################
|
|
|
|
|
|
|
|
a_user=$(whoami)
|
|
|
|
wg_wdir="/home/$a_user/.config/wg_nmcli/"
|
|
|
|
wg_pic="/home/$a_user/.icons/"
|
2023-11-08 17:31:01 +01:00
|
|
|
#Dieser befehl ist notwendig da nach dem import (erster Start) gestartete Tunnel nicht in der .tunnel Datei stehen.
|
|
|
|
nmcli connection show | grep -iPo "(.*)(wireguard)" | sed 's/ .*//' > ${wg_wdir}.tunnel.txt
|
2023-10-28 21:38:26 +02:00
|
|
|
#Damit wird der inhalt von /home/$a_user/.config/wg_nmcli/.tunnel.txt in ein Array gespeichert
|
2023-11-01 16:23:03 +01:00
|
|
|
IFS=$'\n' lines=( $(cat ${wg_wdir}.tunnel.txt) )
|
2023-10-28 21:38:26 +02:00
|
|
|
#echo ${lines[0]} #Damit wird der Inhalt ausgelesen. (Index angeben)
|
|
|
|
wert=$"*_*"
|
|
|
|
for wert in "${lines[@]}"
|
2023-11-01 20:22:11 +01:00
|
|
|
do
|
2023-10-28 21:38:26 +02:00
|
|
|
# hier wird die Ausgabe von nmcli für die auswertung in die .stop.txt gespeichert
|
2023-11-04 08:00:19 +01:00
|
|
|
nmcli connection down "$wert" &> ${wg_wdir}.stop.txt
|
2023-11-03 15:28:08 +01:00
|
|
|
if disable=$(grep -i 'deaktiviert\|deactivated' ${wg_wdir}.stop.txt)
|
2023-11-01 11:11:18 +01:00
|
|
|
then
|
2023-11-03 15:28:08 +01:00
|
|
|
notify-send --icon=${wg_pic}wg-stop.png $"$wert Connection disconnected"
|
2023-10-28 21:38:26 +02:00
|
|
|
fi
|
|
|
|
done
|
2023-11-03 15:28:08 +01:00
|
|
|
pkill yad
|
2023-10-28 21:38:26 +02:00
|
|
|
|
2023-11-01 20:22:11 +01:00
|
|
|
################################# END ##################################################################
|
2023-10-28 21:38:26 +02:00
|
|
|
############################################################################################################
|
|
|
|
|