summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-02-07 22:05:20 -0500
committerJune McEnroe <june@causal.agency>2021-02-07 22:21:59 -0500
commit0a054350dbedcae3618c92e8eb3a7d43836c4258 (patch)
treead25af2f5f9233a96f9c87ffcc7516f666abe2a0 /home
parentSet cursor theme and size (diff)
downloadsrc-0a054350dbedcae3618c92e8eb3a7d43836c4258.tar.gz
src-0a054350dbedcae3618c92e8eb3a7d43836c4258.zip
Add simple battery status and clock to xsession
I love how simple this is.
Diffstat (limited to 'home')
-rw-r--r--home/.config/cwm/cwmrc3
-rwxr-xr-xhome/.local/bin/clock8
-rw-r--r--home/.xsession6
3 files changed, 16 insertions, 1 deletions
diff --git a/home/.config/cwm/cwmrc b/home/.config/cwm/cwmrc
index 3ec07c68..a6a6b7f6 100644
--- a/home/.config/cwm/cwmrc
+++ b/home/.config/cwm/cwmrc
@@ -2,6 +2,9 @@ sticky yes
 snapdist 10
 moveamount 10
 
+ignore clock
+autogroup 0 clock,XTerm
+
 unbind-key all
 bind-key 4-n terminal
 bind-key 4-Delete lock
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
diff --git a/home/.xsession b/home/.xsession
index 0f760261..bd7bbe91 100644
--- a/home/.xsession
+++ b/home/.xsession
@@ -1,7 +1,11 @@
 . ~/.profile
+export LC_CTYPE=C.UTF-8
+
 xset r rate 175 m 4
 xmodmap ~/.config/X/modmap
 xrdb -load ~/.config/X/resources
 xsetroot -bitmap /usr/X11R6/include/X11/bitmaps/xsnow \
 	-bg rgb:7A/49/55 -fg rgb:16/15/10
-cwm -c ~/.config/cwm/cwmrc
+
+xterm -name clock -geometry 14x1-0+0 -sl 0 -e clock &
+exec cwm -c ~/.config/cwm/cwmrc