46 lines
2.1 KiB
Bash
Executable File
46 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
########################################################
|
|
########################################################
|
|
# 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"
|
|
|
|
############################################################################################################
|
|
############################################################################################################
|
|
|
|
a_user=$(whoami)
|
|
wg_wdir="/home/$a_user/.config/wg_nmcli/"
|
|
wg_pic="/home/$a_user/.icons/"
|
|
#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
|
|
#Damit wird der inhalt von /home/$a_user/.config/wg_nmcli/.tunnel.txt in ein Array gespeichert
|
|
IFS=$'\n' lines=( $(cat ${wg_wdir}.tunnel.txt) )
|
|
#echo ${lines[0]} #Damit wird der Inhalt ausgelesen. (Index angeben)
|
|
wert=$"*_*"
|
|
for wert in "${lines[@]}"
|
|
do
|
|
# hier wird die Ausgabe von nmcli für die auswertung in die .stop.txt gespeichert
|
|
nmcli connection down "$wert" &> ${wg_wdir}.stop.txt
|
|
if disable=$(grep -i 'deaktiviert\|deactivated' ${wg_wdir}.stop.txt)
|
|
then
|
|
notify-send --icon=${wg_pic}wg-stop.png $"$wert Connection disconnected"
|
|
fi
|
|
done
|
|
pkill yad
|
|
|
|
################################# END ##################################################################
|
|
############################################################################################################
|
|
|