2023-05-29 15:59:55 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [[ $(eww state | grep calendar_month) ]]; then
|
2023-05-31 02:29:22 -04:00
|
|
|
$HOME/.config/eww/scripts/close.sh date && eww close closer
|
2023-05-29 15:59:55 -04:00
|
|
|
else
|
2023-05-31 02:29:22 -04:00
|
|
|
$HOME/.config/eww/scripts/close-opened.sh
|
2023-06-06 11:45:04 -04:00
|
|
|
eww open closer && $HOME/.config/eww/scripts/open.sh date
|
2023-05-29 15:59:55 -04:00
|
|
|
fi
|