17 lines
375 B
Bash
Executable file
17 lines
375 B
Bash
Executable file
GleisNr() {
|
|
#Gleis
|
|
printf "${RED}$GleisNr${NC}\n"
|
|
mpv modules/dt/gleise_zahlen/hoch//$GleisNr.wav 2&>1 1>/dev/null
|
|
}
|
|
|
|
ZugEinfahrt() {
|
|
#fährt jetzt ein
|
|
printf "${RED}fährt jetzt ein${NC}\n"
|
|
mpv modules/dt/module/0095.wav 2&>1 1>/dev/null
|
|
}
|
|
|
|
planm_abfahrt() {
|
|
printf "${RED}planmäßige Abfahrt${NC}\n"
|
|
#planmäßige Abfahrt
|
|
mpv modules/dt/module/0438.wav 2&>1 1>/dev/null
|
|
}
|