wvkbd icon indicating copy to clipboard operation
wvkbd copied to clipboard

Any way to exit?

Open steveiliop56 opened this issue 2 years ago • 4 comments

Is there any way to exit the keyboard through its buttons?

steveiliop56 avatar Dec 15 '23 20:12 steveiliop56

No, we never really had a need for that.

proycon avatar Dec 15 '23 23:12 proycon

If you use the project on a Linux environment (like raspberry pi os which adopted it now) then in order to close it after you finish you have to go and type pkill wvkbd-mobintl. It would be nice to have a cmp + some button to exit. Although for now I will use a small script. If you want you could close the issue.

steveiliop56 avatar Dec 16 '23 07:12 steveiliop56

I use this script to toggle the keyboard on/off with a swipe gesture

kill -s 34 $(ps -C wvkbd-mobintl | grep wvkbd | awk '{print $1 }')

Overloader6 avatar Dec 16 '23 23:12 Overloader6

Cool cool I use this inside the . desktop file I have: bash -c "pkill wvkbd-mobintl || wvkbd-mobintl -L 200" which is like a button, I press the app keyboard opens I click it again keyboard closes, weirdly it needs the bash -c "" else it wouldn't work.

steveiliop56 avatar Dec 17 '23 07:12 steveiliop56