mirror of
https://github.com/pgrondek/config.git
synced 2024-11-26 05:35:30 +00:00
13 lines
186 B
Bash
Executable File
13 lines
186 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FORMAT=+%Y.%m.%d\ %H:%M
|
|
|
|
date "$FORMAT"
|
|
|
|
case $BLOCK_BUTTON in
|
|
1) gsimplecal ;; # left click?
|
|
3) ;; # right click
|
|
4) ;; # scroll up
|
|
5) ;; # scroll down
|
|
esac
|