A simple overlay for OBS to display consecutive keystrokes. Primarily for programming, especially for Vim.
This will work on Windows and Linux, but the inputbot
crate unfortunately does not support Mac.
2023-04-11.22-04-55.mp4
I plan on releasing binaries eventually, but for now there are two methods:
- Clone or download repo
- Run
cargo run
(with an optional port argument such ascargo run -- 8080
) - In OBS, add a Browser Source, set it to use a
local file
, and point it tooverlay/index.html
- Clone or download repo
- Run
cargo build
(optionally with the--release
flag) - Copy
keystroke_overlay.dll
/keystroke_overlay.so
(located in thetarget/debug
ortarget/release
directory of the project) into your OBS plugins directory, which should either beC:/Program Files/obs-studio/obs-plugins/64bit
or/usr/bin/obs-plugins/
on Windows and Linux respectively. Doing this will automatically start up the server any time that you open OBS. - In OBS, add a Browser Source, set it to use a
local file
, and point it tooverlay/index.html
Avoid typing passwords especially if streaming. If you must, remember to hide the overlay in OBS. Do not forget when this program is running! I will soon add support for a hotkey that tells the input server to start/stop sending inputs.
For any that may be concerned regarding security: while the server does send raw keystrokes over websocket, these will never actually leave your system or hit the network. They are instead sent through the system's loopback interface, additionally meaning that this can be run with or without an internet connection.