We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff35bbf commit 87c686aCopy full SHA for 87c686a
shelldio.sh
@@ -298,11 +298,20 @@ info() {
298
299
last_title=""
300
last_time=""
301
+ last_station_name=""
302
303
while kill -0 "$mpv_pid" 2>/dev/null; do
304
current_title=$(get_current_title)
305
current_time=$(date +"%T")
306
307
+ # Update station name if it changed (during navigation)
308
+ if [[ "$stathmos_name" != "$last_station_name" ]]; then
309
+ tput cup 20 0 # Move to station name line
310
+ tput el # Clear line
311
+ echo -ne " Ακούτε: $stathmos_name"
312
+ last_station_name="$stathmos_name"
313
+ fi
314
+
315
# Update title only when it changes
316
if [[ "$current_title" != "$last_title" ]]; then
317
tput cup 21 0 # Move to title line (after welcome screen)
0 commit comments