diff options
author | June McEnroe <june@causal.agency> | 2021-02-07 22:05:20 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-02-07 22:21:59 -0500 |
commit | 8cf73de3a20f3b8e7d6169fb26a02c819dbe8e42 (patch) | |
tree | a5cd7c3685be7b07d719e8a510479ea43fd6afbe /home/.local/bin | |
parent | Set cursor theme and size (diff) | |
download | src-8cf73de3a20f3b8e7d6169fb26a02c819dbe8e42.tar.gz src-8cf73de3a20f3b8e7d6169fb26a02c819dbe8e42.zip |
Add simple battery status and clock to xsession
I love how simple this is.
Diffstat (limited to '')
-rwxr-xr-x | home/.local/bin/clock | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/home/.local/bin/clock b/home/.local/bin/clock new file mode 100755 index 00000000..4f5c8561 --- /dev/null +++ b/home/.local/bin/clock @@ -0,0 +1,8 @@ +#!/bin/sh +set -eu + +tput civis +while :; do + printf '%3s%% %s' "$(apm -l)" "$(date +'%a %H:%M')" + sleep 10 +done |