Copyright Kevin Froman Licensed under GPLv3
Work in progress
GoSmartKeyboard is a daemon that allows you to have a more powerful keyboarding experience. It can be used with a secondary device, such as an Android phone or a raspberry pi, or it can run locally. A seperate client binary is provided that reads from a FIFO (named pipe) and sends the data to the server. This allows you to use any program that can write to a FIFO as a source of keyboard input.
This is done with a simple websocket server meant to accept a single connection, authenticate it, and stream UTF16 characters and send them as key strokes into the window manager. With a simple daemon like this we can enhance keyboarding with inteligent features.
Be careful with online games, as they may interpret the keystrokes as cheating. I assume if you don’t send keystrokes or more accurately than a human you should be fine, but don’t blame the software if you get banned.
See Building.html for instructions on how to build this literate project.
Examples of what you can do:
vim
or cowsay
on your keyboard!Some points about the design of this project:
The server and client are both single static binaries. The only requirement is Linux. This software has been tested with typical US keyboards in QWERTY and Colemak layouts. It should work with any keyboard layout, though.
Not all keyboards are equal, per the Linux kernel documentation, some keyboards do not autorepeat keys. Autorepeat behavior was also found inconsistent during testing and seems to mess up the rawcapture tool.
sudo KEYBOARD_TCP_BIND_ADDRESS=127.1 KEYBOARD_TCP_BIND_PORT=8080 ./keyboard
You could also run sudoless by giving your user access to uinput, but it would minimally if at all be more secure.
On first run it will output your authentication token. Store it in a safe place such as your password manager.
It is highly recommended to use SSH forwarding (preferred) or a reverse https proxy to access the server.
To connect with ssh, run this on the client:
ssh -R 8080:localhost:8080 user@myserver
It is more secure and mildly more efficient to use a unix socket file. To do this, set the environment variable KEYBOARD_UNIX_SOCKET_PATH
to the path of the socket file. The server will create the file if it does not exist. The socket is useful for reverse proxies or SSH forwarding.
KEYBOARD_AUTH=your_token_here KEYBOARD_FIFO=keyboard_control_file ./keyboard-client "ws://myserver:8080/sendkeys
From here you can use any program that can write to a FIFO to send keystrokes to the server. For example, you could use cat
to send a file to the server, or cowsay
to send a cow message to the server.