Package Details: mouseless-bin 0.1.5-1

Git Clone URL: https://aur.archlinux.org/mouseless-bin.git (read-only, click to copy)
Package Base: mouseless-bin
Description: Control the mouse with your keyboard and remap keys
Upstream URL: https://github.com/jbensmann/mouseless
Licenses: MIT
Submitter: jbensmann
Maintainer: jbensmann
Last Packager: jbensmann
Votes: 1
Popularity: 0.000949
First Submitted: 2023-05-14 13:42 (UTC)
Last Updated: 2023-05-14 13:42 (UTC)

Latest Comments

sanbikappa commented on 2023-06-11 21:55 (UTC)

Cannot find bluetooth keyboard in /dev/input/by-id/, suggest also package this udev rule:

# saved in /usr/lib/udev/rules.d/99-mouseless-persistent-bluetooth-keyboard.rules
# the ENV{ID_BUS} of bluetooth device has been defined in 60-persistent-input.rules

ENV{ID_BUS}!="bluetooth", GOTO="mouseless_persistent_bluetooth_keyboard_end"

# determine class name for persistent symlinks
ENV{ID_INPUT_KEYBOARD}=="?*", ENV{.INPUT_CLASS}="kbd"

# by-id links
KERNEL=="event*", ENV{ID_BUS}=="bluetooth", ENV{.INPUT_CLASS}=="kbd", ENV{ID_SERIAL}=="?*", SYMLINK+="input/by-id/$env{ID_BUS}-$env{ID_SERIAL}-event-$env{.INPUT_CLASS}"
KERNEL=="event*", ENV{ID_BUS}=="bluetooth", ENV{.INPUT_CLASS}=="kbd", ENV{ID_SERIAL}=="", ATTRS{name}=="?*", SYMLINK+="input/by-id/$env{ID_BUS}-$attr{name}-event-$env{.INPUT_CLASS}"

LABEL="mouseless_persistent_bluetooth_keyboard_end"