aboutsummaryrefslogtreecommitdiff
path: root/notify-time
blob: 1173bf0bf504d2ab3c8e5fe1fbc9cfab66f6ac94 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# Little notification to show time and date
# Requirements: notify-send

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

notify-send "$t" "$d"

Generated with cgit - Back to sebastiano.tronto.net