···1314* HiO!
15 This is the *Site/Blog* of {:/meta/about:}[Ladas552] - have fun browsing it and read some recent posts below!
00
···1314* HiO!
15 This is the *Site/Blog* of {:/meta/about:}[Ladas552] - have fun browsing it and read some recent posts below!
16+17+ 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
···6 hardware
7]
8created: 2025-11-25
9-updated: 2025-11-25T15:21:09
10draft: true
11layout: post
12version: 1.1.1
···3839 Yeah, don't ask much from Chinese products or so I learned with them. Cheap products are rarely customizeable anyways, and come as is.
4041-*** Typing experience
42- As it is my first
04344- *lunch break* lol 15:27 2025-11-25
0000000000000000000000000
···6 hardware
7]
8created: 2025-11-25
9+updated: 2025-11-27T17:01:53
10draft: true
11layout: post
12version: 1.1.1
···3839 Yeah, don't ask much from Chinese products or so I learned with them. Cheap products are rarely customizeable anyways, and come as is.
4041+** Usage
42+*** Typing
43+ 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*!
4445+ 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.
46+47+ 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.
48+49+*** Utility
50+ 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.
51+52+ @code nix
53+ ## Brightness with a knob
54+ "Super+XF86AudioRaiseVolume" = {
55+ allow-when-locked = true;
56+ action = spawn [
57+ "brightnessctl"
58+ "set"
59+ "2%+"
60+ ];
61+ };
62+ "Super+XF86AudioLowerVolume" = {
63+ allow-when-locked = true;
64+ action = spawn [
65+ "brightnessctl"
66+ "set"
67+ "2%-"
68+ ];
69+ };
70+ @end