skeledance/toggle-constellations.sh

9 lines
188 B
Bash
Executable file

#!/usr/bin/env bash
STATE_FILE=/tmp/skeledance-constellations
if [ "$(cat "$STATE_FILE" 2>/dev/null)" = "1" ]; then
printf '0\n' > "$STATE_FILE"
else
printf '1\n' > "$STATE_FILE"
fi