mirror of
https://github.com/wallace-aph/System6-theme.git
synced 2025-01-14 23:30:26 +00:00
8 lines
216 B
Bash
8 lines
216 B
Bash
#!/bin/bash
|
|
while true
|
|
do
|
|
echo "%{B#ffffff}%{F#000000} (|) %{F#848484}File%{F#000000} Edit View Label Special %{r} $(date "+%I:%M %p") "
|
|
trap "echo Exited; exit;" SIGINT SIGTERM
|
|
sleep 1m
|
|
done
|