Compare commits

..

No commits in common. "de76c73cdb6d647c64c9418a0a371973a41dddf0" and "67c2e9fe11cb04c812f3aab750c6bcdd030fef06" have entirely different histories.

7 changed files with 9 additions and 18 deletions

View File

@ -3,5 +3,5 @@ Type=Application
Name=Wire-G
Exec=/sbin/wire_g
Terminal=false
Categories=Network;
Categories=Internet;Browser;
Icon=/usr/share/icons/Arch-Symbole/wg-vpn.png

View File

@ -19,19 +19,19 @@ if grep -i 'mint\|debian\|ubuntu\|pop|' /etc/os-release > /dev/null 2>&1
then
echo $"Wire-G is installed..."
mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli
if ! which yad &> /dev/null ; then sudo apt install yad -y &> /dev/null & echo yad is installed... ; fi
if ! which yad > /dev/null ; then sudo apt install yad -y > /dev/null 2>&1 ; echo yad wird installiert. Bitte warten... ; fi
elif grep -i 'arch\|manjaro\|garuda\|endeavour|' /etc/os-release > /dev/null 2>&1
then
echo $"Wire-G is installed..."
mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli
if ! which yad &> /dev/null ; then sudo pacman -S --noconfirm yad &> /dev/null & echo yad is installed... ; fi
if ! which yad > /dev/null ; then sudo pacman -S --noconfirm yad > /dev/null 2>&1 ; echo yad wird installiert. Bitte warten... ; fi
elif grep -i 'fedora' /etc/os-release > /dev/null 2>&1
then
echo $"Wire-G is installed..."
mkdir -p /home/"$USER"/.icons ; cp icons/* /home/"$USER"/.icons/ ; mkdir -p /home/"$USER"/.config/wg_nmcli
if ! which yad &> /dev/null ; then sudo dnf install yad -y ; fi
if ! which yad > /dev/null ; then sudo dnf install yad > /dev/null 2>&1 ; echo yad wird installiert. Bitte warten... ; fi
elif grep -i 'suse' /etc/os-release > /dev/null 2>&1
then

Binary file not shown.

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-11-24 17:50+0100\n"
"PO-Revision-Date: 2023-11-26 08:42+0100\n"
"PO-Revision-Date: 2023-11-24 17:58+0100\n"
"Last-Translator: punix <polunga40@unity-mail.de>\n"
"Language-Team: German <translation-team-de@lists.sourceforge.net>\n"
"Language: de\n"
@ -162,8 +162,5 @@ msgstr ""
"<b>müssen sie ihren Tunnel zuvor importieren.</b>"
#: /home/punix/VSCodium/Wire-G/wg_stop:40
msgid ""
"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>disconnected</b></"
"span>"
msgstr ""
"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>getrennt</b></span>"
msgid "$VALUE Connection disconnected"
msgstr "$VALUE Verbindung wurde getrennt"

View File

@ -134,9 +134,3 @@ msgid ""
"<b>If no tunnels are listed,</b> \n"
"<b>you must first import your tunnel.</b>"
msgstr ""
#: /home/punix/VSCodium/Wire-G/wg_stop:40
msgid ""
"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>disconnected</b></"
"span>"
msgstr ""

View File

@ -2,7 +2,7 @@
Type=Application
Name=wg_on_start
Name[de_DE]=wgonstart.desktop
Exec=/sbin/wg_on_start
Exec=wg_on_start
NoDisplay=true
Terminal=false
Comment=Start on Wire-G Notify with Tunnel

View File

@ -37,7 +37,7 @@ WG_PIC="/home/$USER/.icons/"
--undecorated --borders=8 --skip-taskbar \
--text-align=center --no-buttons \
--timeout 2 --timeout-indicator=bottom \
--text=$"<span color='#0fad0a'><b>$VALUE </b></span><span> <b>disconnected</b></span>"
--text=$"<span color='#0fad0a'><b>$VALUE Connection</b></span><span> <b>disconnected</b></span>"
fi
done
IFS=$'\n' lines=( $(cat ${WG_WDIR}for-kill_pid.txt) )