Compare commits

..

3 commits

Author SHA1 Message Date
Schrottkatze
9bf0eadaa0
make typed more stable 2024-03-08 07:58:44 +01:00
Schrottkatze
1d8f6f9c71
replace libreoffice with onlyoffice 2024-03-08 07:58:27 +01:00
Schrottkatze
b455f5019c
increase trackpoint sensitivity 2024-03-08 07:57:32 +01:00
3 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@
hardware.trackpoint = { hardware.trackpoint = {
enable = true; enable = true;
device = "TPPS/2 IBM TrackPoint"; device = "TPPS/2 IBM TrackPoint";
sensitivity = 220; sensitivity = 256;
}; };
services.xserver.libinput.touchpad.tapping = false; services.xserver.libinput.touchpad.tapping = false;

View file

@ -12,7 +12,7 @@
fontforge-gtk fontforge-gtk
libreoffice onlyoffice-bin_latest
typst typst
rawtherapee rawtherapee

View file

@ -811,7 +811,7 @@ def typed [
] { ] {
touch $"($name).typ" touch $"($name).typ"
typst compile $"($name).typ" typst compile $"($name).typ"
mprocs --names Editor,Viewer,Notify $"hx '($name).typ'" $"mupdf-x11 '($name).pdf'" $"while inotifywait -e modify '($name).pdf' ; do pkill -HUP mupdf; done" mprocs --names Editor,Viewer,Notify $"hx '($name).typ'" $"while true; do mupdf-x11 '($name).pdf' && break; done" $"while inotifywait -e modify '($name).pdf' ; do pkill -HUP mupdf; done"
} }
alias gnix = cd ~/nix-configs; alias gnix = cd ~/nix-configs;