scripts

Various scripts for UNIX-like systems
git clone https://git.tronto.net/scripts
Download | Log | Files | Refs | README

notify-time (243B)


      1 #!/bin/sh
      2 
      3 # Little notification to show time and date
      4 
      5 # Requires: notify-send or similar
      6 
      7 # TODO: check if it still works with notify-send
      8 
      9 #notify=notify-send
     10 notify=herbe
     11 
     12 t=$(date +"%H:%M:%S")
     13 d=$(date +"%d %B %Y, %A")
     14 
     15 $notify "$t" "$d"