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 | 0a054350dbedcae3618c92e8eb3a7d43836c4258 (patch) | |
tree | ad25af2f5f9233a96f9c87ffcc7516f666abe2a0 /home/.local | |
parent | Set cursor theme and size (diff) | |
download | src-0a054350dbedcae3618c92e8eb3a7d43836c4258.tar.gz src-0a054350dbedcae3618c92e8eb3a7d43836c4258.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 |