diff options
Diffstat (limited to '')
| -rwxr-xr-x | notify-time | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/notify-time b/notify-time new file mode 100755 index 0000000..1173bf0 --- /dev/null +++ b/notify-time | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | # Little notification to show time and date | ||
| 4 | # Requirements: notify-send | ||
| 5 | |||
| 6 | t=$(date +"%H:%M:%S") | ||
| 7 | d=$(date +"%d\ %B\ %Y,\ %A") | ||
| 8 | |||
| 9 | notify-send "$t" "$d" | ||
