summaryrefslogtreecommitdiff
path: root/.local/bin/statusbar/timeinfo
blob: a091f8437620e88afa0b66286fff7fa68dbbcebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env sh

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'