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 421e8dd commit b6d4f78Copy full SHA for b6d4f78
shelldio.sh
@@ -352,7 +352,7 @@ info() {
352
echo -ne " "
353
354
# Check for user input
355
- read -r -n1 -s -t 0.1 input_play
+ read -r -n1 -s -t 1 input_play
356
case "$input_play" in
357
[Qq]) return 1 ;; # Signal to quit
358
[Ll]) return 0 ;; # Signal to return to menu
@@ -375,7 +375,7 @@ info() {
375
[Pp]) previous_station ;; # Previous station
376
$'\e')
377
# Handle arrow keys (escape sequences)
378
- read -r -n2 -s -t 0.1 arrow
+ read -r -n2 -s -t 1 arrow
379
case "$arrow" in
380
"[C") next_station ;; # Right arrow = Next
381
"[D") previous_station ;; # Left arrow = Previous
0 commit comments