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