diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-08 06:32:43 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-01-08 06:32:43 -0500 |
commit | e481a5a8f4773a1e54f1a701fc9a4da08d9970f8 (patch) | |
tree | d1a0bc0c95b91c7ef76aa5996116a3769433346d /.local/bin/dwmbar/dwmb-date | |
parent | f78d3d72ea10c132858f4c07496257a1aafec187 (diff) |
Lint dwmblocks scripts
Diffstat (limited to '.local/bin/dwmbar/dwmb-date')
-rwxr-xr-x | .local/bin/dwmbar/dwmb-date | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/dwmbar/dwmb-date b/.local/bin/dwmbar/dwmb-date index 1943f10..4caf8b4 100755 --- a/.local/bin/dwmbar/dwmb-date +++ b/.local/bin/dwmbar/dwmb-date @@ -1,8 +1,8 @@ #!/bin/sh -date +" %a %b %d " +date +" %a %b %d" case $BLOCK_BUTTON in - 1) notify-send -a " Calendar" "$(cal | tail -n +2)" ;; - 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +1) notify-send -a " Calendar" "$(cal | tail -n +2)" ;; +6) "$TERMINAL" -e "$EDITOR" "$0" ;; esac |