9 lines
131 B
Text
9 lines
131 B
Text
|
#!/usr/bin/bash
|
||
|
|
||
|
if eww state | grep -q "USERNAME: val"
|
||
|
then
|
||
|
eww close-all
|
||
|
else
|
||
|
eww open-many background profile system clock
|
||
|
fi
|