Compare commits

..

15 commits

Author SHA1 Message Date
b030f710bd home: vim: tree-sitter: use explicit buffer option
Some checks failed
ci/woodpecker/push/check Pipeline failed
2026-04-04 22:48:05 +01:00
7cd11808c8 home: wm: i3: fix 'toggle-xautolock'
Because of DPMS, I would still get a screen-lock after a 10-minute
timeout.

I think the `xset s {on,off}` part is not _strictly_ necessary, but a
little bit of cargo-culting never hurt anybody.

According to the `xss-lock` man page `xset s on` use hard-coded values,
not my preferred timeouts. Given that I rely on `xautolock` anyway, I
don't care about the timeouts and set them to `0`.
2026-04-04 22:48:05 +01:00
3ce9a648a8 home: wm: clarify documentation 2026-04-04 22:48:05 +01:00
c38eb02232 home: wm: use 'i3lock' with 'i3'
Rather than use it as the default, set it in the `i3` module.
2026-04-04 22:48:05 +01:00
0b20f86897 home: wm: fix documentation 2026-04-04 22:48:05 +01:00
86c3333e0b home: wm: screen-lock: use 'writeShellApplication'
More robust implementation of the notifier.
2026-04-04 22:48:05 +01:00
ca6d14648e home: wm: screen-lock: remove 'cornerLock'
I never use it...
2026-04-04 22:48:05 +01:00
9394de1f31 home: wm: make 'windowManager' extensible 2026-04-04 22:48:05 +01:00
f0cc71da5f home: wm: fix typo 2026-04-04 22:48:05 +01:00
153a28158c home: wm: i3: use grey background
Because I sometimes do get a glimpse of the background, and would rather
not have anything on it.
2026-04-04 22:48:05 +01:00
aa4ef9b0a1 nixos: profiles: x: remove wallpaper
I don't actually care much for the wallpaper, I never look at it.
2026-04-01 20:04:43 +01:00
501645aae1 home: firefox: tridactyl: refactor editor float
Ghostty *needs* a specific format for its `--class`, but not for its
`--title`.
2026-04-01 20:04:43 +01:00
8d55daebbc home: firefox: tridactyl: refactor vim command
Thus far, I've only encountered `termite` having a broken implementation
of `--exec`...
2026-04-01 20:04:43 +01:00
571f794ced home: terminal: termite: add 'enable' 2026-04-01 20:04:43 +01:00
4873ae096f home: terminal: alacritty: add 'enable' 2026-04-01 20:04:43 +01:00
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ in
};
alacritty = {
enable = mkEnableOption "alacritty" // {
enable = lib.mkEnableOption "alacritty" // {
default = config.my.home.terminal.default == "alacritty";
};
};

View file

@ -9,8 +9,8 @@ in
type = with types; nullOr (enum [ "termite" ]);
};
termite = {
enable = mkEnableOption "termite" // {
termite = with lib; {
enable = lib.mkEnableOption "termite" // {
default = config.my.home.terminal.default == "termite";
};
};