#!/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"