dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit c5fcb691cd9c017eba1ffdaef40939cf9b40ddc4
parent 7ee47e28247f1b820223f569028c310e4782cbe5
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu, 10 Sep 2020 11:05:29 +0200

Use xmessage for calendar messages

Diffstat:
M.local/bin/calendar-notify | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/calendar-notify b/.local/bin/calendar-notify @@ -29,7 +29,7 @@ calendar -A 0 | while read -r month day time desc; do dt="$(( $t - $t_now ))" if [ "$dt" -le "$t_notify" ] && [ "$dt" -ge 0 ]; then - notify -u critical "$desc" "$time" + xmessage "$desc" "$time" fi fi done