From 6f45972265b532365421658f1370742bb82b757b Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 9 Feb 2022 19:50:38 +0100 Subject: Changed default notification system to herbe --- notify-time | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'notify-time') diff --git a/notify-time b/notify-time index 1173bf0..39bc805 100755 --- a/notify-time +++ b/notify-time @@ -1,9 +1,13 @@ #!/bin/sh # Little notification to show time and date -# Requirements: notify-send + +# Requires: notify-send or similar + +#notify=notify-send +notify=herbe t=$(date +"%H:%M:%S") d=$(date +"%d\ %B\ %Y,\ %A") -notify-send "$t" "$d" +$notify "$t" "$d" -- cgit v1.3