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
|
|
|
|
|
2023-11-14 19:54:51 +01:00
|
|
|
export TEXTDOMAIN=wire-g
|
|
|
|
export TEXTDOMAINDIR="/usr/share/locale"
|
2023-10-28 21:38:26 +02:00
|
|
|
|
|
|
|
############################################################################################################
|
|
|
|
############################################################################################################
|
|
|
|
|
2023-11-14 19:54:51 +01:00
|
|
|
WG_WDIR="/home/$USER/.config/wg_nmcli/"
|
|
|
|
WG_PIC="/home/$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.
|
2023-11-14 19:54:51 +01:00
|
|
|
nmcli connection show | grep -iPo "(.*)(wireguard)" | sed 's/ .*//' > ${WG_WDIR}.tunnel.txt
|
|
|
|
#Damit wird der inhalt von /home/$USER/.config/wg_nmcli/.tunnel.txt in ein Array gespeichert
|
|
|
|
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)
|
2023-11-14 19:54:51 +01:00
|
|
|
VALUE=$"*_*"
|
|
|
|
for VALUE in "${lines[@]}"
|
2023-11-01 20:22:11 +01:00
|
|
|
do
|
2023-11-14 19:54:51 +01:00
|
|
|
# hier wird die Ausgabe von nmcli für die ausVALUEung in die .stop.txt gespeichert
|
|
|
|
nmcli connection down "$VALUE" &> ${WG_WDIR}.stop.txt
|
|
|
|
if disable=$(grep -i 'deaktiviert\|deactivated' ${WG_WDIR}.stop.txt)
|
2023-11-15 12:38:16 +01:00
|
|
|
then
|
|
|
|
yad --image-on-top --image=${WG_PIC}wg-info.png \
|
|
|
|
--undecorated --borders=8 --skip-taskbar \
|
|
|
|
--text-align=center --no-buttons \
|
2023-11-15 17:56:10 +01:00
|
|
|
--timeout 2 --timeout-indicator=bottom \
|
2023-11-15 17:34:49 +01:00
|
|
|
--text=$"<span color='#0fad0a'><b>"$VALUE" Connection disconnected</b></span>"
|
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
|
|
|
############################################################################################################
|
|
|
|
|