mirror of
https://github.com/rwxrob/dot
synced 2024-11-16 21:25:29 +00:00
12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
clear=$'\033[2J'
|
||
|
|
||
|
trap "setterm --cursor on; echo ${clear}; exit; trap -- - SIGINT SIGTERM" SIGTERM SIGINT
|
||
|
|
||
|
echo "${clear}"
|
||
|
zet view disclaimer
|
||
|
now
|
||
|
setterm --cursor off
|
||
|
while true; do sleep 2; done
|