Any way to create an on-screen keyboard for touch screen?

Install xvkbd.
Create this script:

#!/bin/bash
if [ $(pidof xvkbd) ]; then 
kill $(pidof xvkbd) 
else
xvkbd -no-keypad -secure &
fi

Bind the script to a keyboard shortcut to toggle the keyboard on and off.

Read this discussion

1 Like