22 lines
771 B
Bash
Executable File
22 lines
771 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## Read config file or create/update
|
|
config_filename=~/.config/$(basename "${0}")
|
|
test -f "${config_filename}" && . "${config_filename}" || echo "# Fichier de configuration créé $(date +%c)" | tee "${config_filename}"
|
|
|
|
### edit directory path music background
|
|
if [[ -z "${jingle_tophoraire+set}" ]]; then
|
|
jingle_tophoraire=$(xdg-user-dir MUSIC)/jingles/t1.top_h_hkc.mp3
|
|
echo "jingle_tophoraire=${jingle_tophoraire}" | tee -a "${config_filename}"
|
|
fi
|
|
|
|
|
|
# Lecture du jingle en arrière-plan
|
|
echo "$jingle_tophoraire"
|
|
paplay "$jingle_tophoraire" >/dev/null 2>&1 &
|
|
|
|
# Annonce de l'heure actuelle en utilisant espeak-ng
|
|
heure_actuelle=$(date +'%k')
|
|
message_annonce="top horaire. $heure_actuelle heures"
|
|
espeak-ng "$message_annonce" -v fr+f5 -p 25 -s 135
|