aboutsummaryrefslogtreecommitdiff
path: root/notify-time
blob: 4b77c742897782c9725d0e586ad4bc7eaedfc4bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# Little notification to show time and date

# Requires: notify-send or similar

# TODO: check if it still works with notify-send

#notify=notify-send
notify=herbe

t=$(date +"%H:%M:%S")
d=$(date +"%d %B %Y, %A")

$notify "$t" "$d"

Generated with cgit - Back to sebastiano.tronto.net