aboutsummaryrefslogtreecommitdiff
path: root/herbstluftwm/code/sys/cal.sh
diff options
context:
space:
mode:
authorxero <x@xero.nu>2014-07-28 12:08:51 -0400
committerxero <x@xero.nu>2014-07-28 12:08:51 -0400
commitc68b3e8bb8deae3361eed19a4273bc4665ef3ba7 (patch)
treea05fa7a308c66ea4f0ff8efc95b1e50556a766d2 /herbstluftwm/code/sys/cal.sh
parente49f9b91d225c90ae7da3cab84e9ede23601b05f (diff)
downloaddotfiles_ascii-c68b3e8bb8deae3361eed19a4273bc4665ef3ba7.tar.xz
dotfiles_ascii-c68b3e8bb8deae3361eed19a4273bc4665ef3ba7.zip
add popup calendar to herbstluft dzen2 bar
Diffstat (limited to '')
-rwxr-xr-xherbstluftwm/code/sys/cal.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/herbstluftwm/code/sys/cal.sh b/herbstluftwm/code/sys/cal.sh
new file mode 100755
index 0000000..f339a8c
--- /dev/null
+++ b/herbstluftwm/code/sys/cal.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+# popup calendar for dzen
+font="-Gohu-GohuFont-Medium-R-Normal--11-80-100-100-C-60-ISO10646-1"
+TODAY=$(expr `date +'%d'` + 0)
+MONTH=`date +'%m'`
+YEAR=`date +'%Y'`
+LINES=$(cal -m | wc -l)
+LINES=$((LINES + 2))
+
+(
+date +'^bg(#666666) '
+date +''
+# current month, highlight header and today
+cal -m | sed -r -e "1,2 s/.*/^fg(#737373)&^fg()/" -e "s/(^| )($TODAY)($| )/\1^bg(#6A8C8C)^fg(#000000)\2^fg()^bg()\3/") | dzen2 -x 1290 -y 4 -w 146 -h 12 -l $LINES -sa c -p -e 'onstart=uncollapse,hide;button1=exit;' -fg "#909090" -tw 6 -fn "$font"
+)