The Keyboardio Atreus ATTACH
The Keyboardio Atreus is a 44-key minimalist keyboard that is sculpted to fit the natural length of the fingers in a way that minimalist keyboards like the Planck can't. it has just enough keys to work with my weird layout, and i intend to use it as such. :) This one is equipped with Kailh BOX Brown switches and Laser GMK keycaps, I like the tactile bump and this thing can crush prose writing.
The Keyboard and Layout ATTACH
I use QWERTY, a custom symbol layer, and a mouse layer which I may not use. These screenshots were taken out of Chrysalis, the Keyboardio configurator on [2020-10-13].
My Xmodmap Hacks are overlayed on this to create a full brace pair cluster on the left hand with the right hand entering symbol layer.
Hardware Support
This UDEV
rule makes sure that the
device can be accessed by users, this allows me to program the device
without needing to become root. This "just works" on My NixOS configuration,
though.
SUBSYSTEM=="tty", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="230[0-3]", TAG+="uaccess"
- name: udev rule installed
copy:
src: udev/90-keyboardio.rules
dest: /etc/udev/rules.d/90-keyboardio.rules
tags:
- udev
- atreus
register: keyboardio_udev
- name: udev refreshed
shell: udevadm trigger
when: keyboardio_udev.changed