2021-12-31 15:57:34 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-03-08 19:11:04 +00:00
|
|
|
FILE=/home/jpm/.local/state/onscreen-keyboard
|
2021-12-31 15:57:34 +00:00
|
|
|
if [ -f $FILE ]; then
|
2023-01-06 19:41:31 +00:00
|
|
|
rm $FILE
|
|
|
|
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b false
|
2021-12-31 15:57:34 +00:00
|
|
|
else
|
2023-01-06 19:41:31 +00:00
|
|
|
touch $FILE
|
|
|
|
busctl call --user sm.puri.OSK0 /sm/puri/OSK0 sm.puri.OSK0 SetVisible b true
|
2021-12-31 15:57:34 +00:00
|
|
|
fi
|