blob: fcfc1bd0b34e800812ea3c9a038558de87ee45e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/env bash
ARG=${1:-$BLOCK_BUTTON}
case $ARG in
1) notify-send --urgency=low \
"Calendar" \
"$(cal -w -m)"
;;
3) notify-send --urgency=low \
"Weather" \
"$(weather)"
;;
esac
date +'%F %R'
|