2023-06-14 03:16:26 -04:00
|
|
|
#!/usr/bin/env bash
|
2023-05-28 19:54:01 -04:00
|
|
|
|
|
|
|
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
|