From 0bcca7b6808a02af3c4758c30eec9984d44dfac7 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 9 Feb 2022 19:13:45 +0100 Subject: Changed notification system to herbe. --- scripts-build/sdep-checkpast | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 scripts-build/sdep-checkpast (limited to 'scripts-build/sdep-checkpast') diff --git a/scripts-build/sdep-checkpast b/scripts-build/sdep-checkpast deleted file mode 100644 index 66d6eec..0000000 --- a/scripts-build/sdep-checkpast +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/sh - -# Run this at boot to receive a notification about past events that you might -# have missed -# -# The events are read from the following files in /home/sebastiano/.local/share/sdep folder: -# once: events that only happen once; full date needs to be specified -# daily: events that happen every day; only specify the time in HH:MM format -# weekly: only specify Weekday + time -# monthly: only specify day of the month + time - -# Requires: notify-send. - -notify="notify-send -t 3600000" - -sdep-list past | \ -while read text; do - date=$(echo "$text" | sed 's/\t.*//') - event=$(echo "$text" | sed 's/.*\t//') - $notify "$date" "$event" -done -- cgit v1.3