dotfiles/de/home/.config/sway/scripts/eww-toggle.sh
2025-09-02 14:45:02 -07:00

12 lines
172 B
Bash
Executable file

#!/bin/bash
if [[ -z ${1} ]];then
printf 'no variable provided\n'
exit 1
fi
if [[ "$(eww get ${1})" -eq "true" ]];then
var_state="false"
else
var_state="true"
fi