Last active
March 17, 2020 19:46
-
-
Save KaratekHD/099de769d4e91fc99756be0482b974ef to your computer and use it in GitHub Desktop.
TS_Julia
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd /home/julia/ | |
echo "TS3 Installer für Ubuntu" | |
echo "Copyright (C) 2020 Karatek_HD. Do not distribute!" | |
touch ~/.local/share/applications/teamspeak3-client.desktop | |
echo "[Desktop Entry]" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "Name=Teamspeak 3 Client" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "GenericName=Teamspeak" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "Comment=Speak with friends" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "Comment[de]=Spreche mit Freunden" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "Exec=bash /home/julia/TeamSpeak3-Client-linux_amd64/ts3client_runscript.sh" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "Terminal=false" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "X-MultipleArgs=false" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "Type=Application" >> ~/.local/share/applications/teamspeak3-client.desktop | |
# ICON? | |
echo "Categories=Network;" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "StartupWMClass=TeamSpeak 3" >> ~/.local/share/applications/teamspeak3-client.desktop | |
echo "StartupNotify=true" >> ~/.local/share/applications/teamspeak3-client.desktop | |
cp ~/.local/share/applications/teamspeak3-client.desktop /home/julia/Schreibtisch/Teamspeak.desktop | |
echo "Fertig. Die Datei ~/.local/share/applications/teamspeak3-client.desktop wurde erstellt. Wenn alles gut ging, müsste die Datei jetzt auf deinem Desktop erschienen sein." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment