7 lines
107 B
Bash
Executable file
7 lines
107 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
if eww windows | grep -q "*calendar"; then
|
|
eww close calendar
|
|
else
|
|
eww open calendar
|
|
fi
|