31 lines
702 B
Bash
31 lines
702 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
state () {
|
||
|
if [[ $(busctl get-property --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 Visible) == "b true" ]]; then
|
||
|
echo "Running"
|
||
|
else
|
||
|
echo "Stopped"
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
toggle () {
|
||
|
if [[ $(busctl get-property --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 Visible) == "b true" ]]; then
|
||
|
echo "Running"
|
||
|
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b false
|
||
|
else
|
||
|
echo "Stopped"
|
||
|
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
if [[ $1 == "getState" ]]; then
|
||
|
while true; do
|
||
|
sleep 0.2
|
||
|
state
|
||
|
done
|
||
|
fi
|
||
|
|
||
|
if [[ $1 == "toggle" ]];then
|
||
|
toggle
|
||
|
fi
|