-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-linux.sh
65 lines (56 loc) · 2.55 KB
/
setup-linux.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
sfile="Support-Client.desktop"
lsfile="start.sh"
ver="0.9.5"
echo """
##############################################################################################
# Support-Client setup v$ver #
#--------------------------------------------------------------------------------------------#
# by BS @2015 #
#--------------------------------------------------------------------------------------------#
# this tool configure the $sfile for easy starting the program #
##############################################################################################
"""
echo """
###########################################################################################
# Support-Client v$ver Copyright (C) 2015 Guenter Bailey #
# This program comes with ABSOLUTELY NO WARRANTY. #
# This is free software, and you are welcome to redistribute it under certain conditions. #
###########################################################################################
"""
if [ -f $sfile ]; then
echo "Datei $sfile vorhanden"
echo "file $sfile exists"
else
echo "Starte Installation von Abhaengigkeiten"
apt-get install python2.7 python python-tk
echo """
Erstelle die Desktop Datei $sfile
Die Sie nachher auf den Desktop kopieren koennen.
create the desktop file $sfile
after then, you can copy this file to the desktop
------------------------------------------------------------------------------------
Support-Client Pfad $PWD
Support-Client path $PWD
"""
echo "[Desktop Entry]" >> $sfile
echo "Version=1.0" >> $sfile
echo "Type=Application" >> $sfile
echo "Name=Support-Client" >> $sfile
echo "Comment=Dieses Programm wurde Entwickelt damit Kunden einfach zur Zeit ein Fernwartungstool downloaden koennen und falls es ist auch noch zu starten." >> $sfile
echo "Exec=python support-client.py" >> $sfile
echo "Icon=$PWD/bin/image/support-client.PNG" >> $sfile
echo "Path=$PWD/" >> $sfile
echo "Terminal=false" >> $sfile
echo "StartupNotify=true" >> $sfile
echo "GenericName=" >> $sfile
sleep 1
chmod +x $PWD/$sfile
sleep 1
echo """
Desktop Datei $sfile erstellt
desktop file $sfile created
Konfiguration erfolgreich, Sie koennen nun das Programm mit klick auf $sfile starten.
configuration successfull, you can now starting the program with double click.
"""
fi