You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,14 +31,16 @@ Quality couch keyboards are not so accessible, STT on Linux isn’t in a good st
31
31
>
32
32
> On Wayland, screen capture requires a working PipeWire + XDG Desktop Portal setup (typically provided by your desktop environment).
33
33
>
34
-
> Your user must also have permission to access `/dev/uinput`. A common setup is:
34
+
> Your user must also have permission to access `/dev/uinput`. A recommended setup is:
35
35
>
36
36
> ```bash
37
+
> sudo groupadd -f uinput
38
+
>
37
39
> sudo tee /etc/udev/rules.d/99-rein.rules <<EOF
38
-
> KERNEL=="uinput", MODE="0660", GROUP="input"
40
+
> KERNEL=="uinput", MODE="0660", GROUP="uinput"
39
41
> EOF
40
42
>
41
-
> sudo usermod -aG input$USER
43
+
> sudo usermod -aG uinput$USER
42
44
>
43
45
> sudo udevadm control --reload-rules
44
46
> sudo udevadm trigger
@@ -55,7 +57,7 @@ Quality couch keyboards are not so accessible, STT on Linux isn’t in a good st
55
57
> which should show:
56
58
>
57
59
>```text
58
-
> crw-rw---- 1 root input ... /dev/uinput
60
+
> crw-rw---- 1 root uinput ... /dev/uinput
59
61
> ```
60
62
>
61
63
> Additionally, some native dependencies are required. Install them via your package manager (see [`shell.nix`](shell.nix) for the list), or use `nix-shell` directly.
0 commit comments