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

# Little notification to show time and date

# Requires: notify-send or similar

#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