diff options
author | Philip Wittamore <philip@wittamore.com> | 2025-06-16 18:33:27 +0200 |
---|---|---|
committer | Philip Wittamore <philip@wittamore.com> | 2025-06-16 18:33:27 +0200 |
commit | ce2d80f5c5104c31950a30eac0a6a86ba71c3163 (patch) | |
tree | 48417c3b848ae7f3808fbb1d43bb521a8115960f /dmenu-calendar | |
parent | 00e2a2f919bb26ca1493ca2842dd7af1791ae587 (diff) | |
download | scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.gz scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.tar.bz2 scripts-ce2d80f5c5104c31950a30eac0a6a86ba71c3163.zip |
update
Diffstat (limited to 'dmenu-calendar')
-rwxr-xr-x | dmenu-calendar | 9 |
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 |