aboutsummaryrefslogtreecommitdiff
path: root/dmenu-calendar
diff options
context:
space:
mode:
Diffstat (limited to 'dmenu-calendar')
-rwxr-xr-xdmenu-calendar9
1 files changed, 9 insertions, 0 deletions
diff --git a/dmenu-calendar b/dmenu-calendar
new file mode 100755
index 0000000..9bad4ea
--- /dev/null
+++ b/dmenu-calendar
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+
+# Start
+DAY=$(date +'%e')
+
+dunstify 'Calendar' "$(cal | sed -e "s/$DAY\b/<u>$DAY<\/u>/g")"
+
+exit 0