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
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