···13131414* HiO!
1515 This is the *Site/Blog* of {:/meta/about:}[Ladas552] - have fun browsing it and read some recent posts below!
1616+1717+ To note: I am not interested in your data, *github hosting* does it's own things. The Site's javascript only exists to redirect on safari browser users and for the footer to check client side scrolling.
+30-4
content/posts/Ajazz.norg
···66 hardware
77]
88created: 2025-11-25
99-updated: 2025-11-25T15:21:09
99+updated: 2025-11-27T17:01:53
1010draft: true
1111layout: post
1212version: 1.1.1
···38383939 Yeah, don't ask much from Chinese products or so I learned with them. Cheap products are rarely customizeable anyways, and come as is.
40404141-*** Typing experience
4242- As it is my first
4141+** Usage
4242+*** Typing
4343+ Right of the bed, I don't write a lot, nor I have to use an arm rests or other stuff. I don't even follow home row typing practices. So my typing experience is only about mechanical implications. For example: I love having *lots of keys*!
43444444- *lunch break* lol 15:27 2025-11-25
4545+ It's a 1800-layout keyboard, which basically means it's full-size but with tighter key layout. Makes it easy to balance the board on my lap. And each key is really sensitive, so doesn't need lots of force to type. Considering there is no rebound on this keyboard, and the springs are pretty stiff, it makes fingers hurt a lot less during typing.
4646+4747+ But that's also the catch, because it can lead to double taps if you fingers aren't quick enough to lift. Also I noticed that in bluetooth mode, the keys can *double tap*, so be careful about that on your phone.
4848+4949+*** Utility
5050+ So it got a knob, *the best thing since sliced bread*, if we assume sliced bread also has a knob. I used it everyday. It feels so nice to rotate, it got little mechanical feedback. By default it outputs the `XF86AudioRaiseVolume` and `XF86AudioLowerVolume` respectively. But, thous are just keys! You can assign anything to thous keys, for example: I added keybind with a mod key to adjust brightness on my niri.
5151+5252+ @code nix
5353+ ## Brightness with a knob
5454+ "Super+XF86AudioRaiseVolume" = {
5555+ allow-when-locked = true;
5656+ action = spawn [
5757+ "brightnessctl"
5858+ "set"
5959+ "2%+"
6060+ ];
6161+ };
6262+ "Super+XF86AudioLowerVolume" = {
6363+ allow-when-locked = true;
6464+ action = spawn [
6565+ "brightnessctl"
6666+ "set"
6767+ "2%-"
6868+ ];
6969+ };
7070+ @end