11 lines
284 B
Bash
Executable file
11 lines
284 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
STATE_FILE=/tmp/skeledance-sky-timescale
|
|
|
|
if [ "$(cat "$STATE_FILE" 2>/dev/null)" = "360" ]; then
|
|
printf '1\n' > "$STATE_FILE"
|
|
printf 'Céu em tempo real\n'
|
|
else
|
|
printf '360\n' > "$STATE_FILE"
|
|
printf 'Céu acelerado 360x (1 hora a cada 10 segundos)\n'
|
|
fi
|