-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.sh
executable file
·113 lines (98 loc) · 2.29 KB
/
main.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/bash
./init/set_permission.sh
# Funktion zum Sammeln von Skripten aus einem Verzeichnis
collect_scripts() {
#local options=() # Deklariere options als lokales Array
local dir="$1"
options+=("$dir")
for script in "$dir"/*.sh; do
# Prüfe, ob das Skript existiert
if [ -f "$script" ]; then
options+=("$script")
fi
done
}
# Array zum Speichern der Skriptnamen
options=()
# Füge Skripte aus dem aktuellen Verzeichnis hinzu
for script in *.sh; do
# Ausschließen des eigenen Skripts aus den Optionen
if [ "$script" != "${0##*/}" ]; then
options+=("$script")
fi
done
# Prüft OS
if ps aux | grep -q -E 'Xorg|wayland'; then
if [[ "$(lsb_release -is 2>/dev/null)" == "Linuxmint" ]]; then
collect_scripts "linux_mint"
fi
else
if [[ "$(lsb_release -is 2>/dev/null)" == "Ubuntu" ]]; then
collect_scripts "ubuntu_server"
fi
fi
if [[ "$(uname)" == "Linux" ]]; then
collect_scripts "linux"
fi
# Füge die Option "Beenden" hinzu
options+=("Beenden")
# Position des aktuellen Cursors
cursor=0
# Funktion zum Zeichnen des Menüs
draw_menu() {
clear
for i in "${!options[@]}"; do
if [ $i -eq $cursor ]; then
echo -e "> \e[1;32m${options[$i]##*/}\e[0m"
else
echo " ${options[$i]##*/}"
fi
done
}
# Funktion zur Verarbeitung der Benutzereingabe
handle_input() {
read -s -n 1 key
case $key in
A) # Up Arrow
((cursor--))
if [ $cursor -lt 0 ]; then
cursor=$((${#options[@]} - 1))
fi
;;
B) # Down Arrow
((cursor++))
if [ $cursor -ge ${#options[@]} ]; then
cursor=0
fi
;;
"") # Enter Key
return 0
;;
esac
return 1
}
# Hauptschleife
while true; do
draw_menu
handle_input
if [ $? -eq 0 ]; then
if [ "${options[$cursor]}" == "Beenden" ]; then
break
else
selected_item="${options[$cursor]}"
#read -p "gestoppt zum debug: ${options[$cursor]}"
if [ -f "$selected_item" ]; then
echo "Starte ${options[$cursor]}..."
#bash ./"$selected_item" # mit Interpreter
./"${options[$cursor]}"
read -p "Drücke eine beliebige Taste, um fortzufahren..."
elif [ -d "$selected_item" ]; then
return 0
else
echo "Unbekannter Typ oder Fehler beim Zugriff auf ${selected_item}"
fi
return 0
fi
fi
done
clear