A (marginally) better on screen keyboard for GNOME 45+ (go to the pre-45 branch for compatibility from gnome 42-44)
This fork was modified to include a handwriting area. Using a unix socket, the strokes are transferred to inkput_daemon.py and the recognized text is sent back, so the extension can type it in.
Press the button on the top right to switch to handwriting input, and the "keyboard" button to switch back.
Drawing performance is terrible, even though the display is already redrawn just at the end of each stroke.
Only tested with these extension preferences:
- portrait/landscape sizing: width 100%, height as you wish (I use 35% for portrait anf 45% for landscape)
- default position: bottom center
- Drag snap spacing (px): 0
Video:
gjsosk_pinenote_demo.webm
Installation: clone this repo and copy the [email protected]
directory to .local/share/gnome-shell/extensions/
The daemon side: see https://github.com/s12wu/inkput?tab=readme-ov-file#integration-into-the-on-screen-keyboard-gnome-only
original readme continues...
- Function, modifier, tab, and arrow key support
- Ability to move around the screen
- More compact layout
- GNOME 45 or above
- Wayland (X11 is not working properly)
Keyboard.Demo.webm
Settings.Demo.webm
- Visit https://extensions.gnome.org/extension/5949/gjs-osk/
- Confirming that you have Chrome GNOME shell installed on your computer and your browser's GNOME Shell Integration plugin
- Click Install, and accept the prompt
- Head to the releases in the sidebar
- Download
gjsosk@vishram1123_[version].zip
(main
for GNOME version >= 45,pre-45
for GNOME verison <= 44) - Run
gnome-extensions install /path/to/gjsosk@vishram1123_[version].zip
(replace with appropriate path) - Log out of GNOME and log back in.
- Click on the keyboard button in the dash bar
- To drag the keyboard around, click on the move icon in the bottom right, then drag the keyboard around the screen. To get the full keyboard back, press the move icon again.
- The keyboard will snap to the corners, edges, and center of the screen.
- To change properties about the keyboard, open up the "Extensions" application, and click on "Settings" under this extension to get a list of changeable properties
- Close the settings dialog to save any modified settings
- To type special characters, open GNOME settings, and turn on "Compose Key" under the Keyboard submenu. Choose a modifier (preferably right alt), and use the key combinations listed here to type special characters
- To change the keyboard layout, change the layout in Gnome's Control Center
- To add typing prediction, add "Typing Booster" as an input source (in GNOME's settings), and keep it chosen as the primary input source (extended guide here).
- Note that this will cause predictive text to be present even without the OSK open, and the input language for Typing Booster's predictions will have to be set in Typing Booster's settings
- To open the keyboard from the command line (or with a shortcut), run the command
dconf write /org/gnome/shell/extensions/gjsosk/indicator/opened true
which will open the keyboard
- 100% width or height doesn't take up the full monitor width or height (minus 25 px on either side). Instead, it is 1 or 2 px smaller, depending on the monitor size
- If you find any bugs, or if you have any suggestions, please open an issue or submit a pull request. Thanks!
- As of recently, all keyboard layouts and variants (available through localectl) have been added to GJS-OSK. Please report on the state of keyboard layouts as correct/incorrect in issue #48, and I will try to fix them promptly.
- To generate a single keyboard layout, install
xkbcommon
throughpip
and rungenKeyMap.py
withlayout+variant
as the argument (pip install xkbcommon
thenpython genKeyMap.py de+dvorak
for example)
- To generate a single keyboard layout, install
Help in this area is greatly appreciated!