Files
colorshell/eww/scripts/display-calendar.sh
T
2024-11-23 10:10:28 -03:00

10 lines
201 B
Bash

#!/usr/bin/env bash
if [[ $(eww get calendar_state) == "show" ]]; then
eww close calendar
eww update calendar_state="hidden"
else
eww open calendar
eww update calendar_state="show"
fi