8 lines
241 B
Bash
Executable file
8 lines
241 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ $(eww state | grep br_icon) ]]; then
|
|
$HOME/.config/eww/scripts/close.sh actions && eww close closer
|
|
else
|
|
$HOME/.config/eww/scripts/close-opened.sh
|
|
eww open closer && $HOME/.config/eww/scripts/open.sh actions
|
|
fi
|