diff options
-rw-r--r-- | .config/guix/modules/dwm.scm | 9 | ||||
-rw-r--r-- | .config/guix/modules/dwm/config.def.h | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/.config/guix/modules/dwm.scm b/.config/guix/modules/dwm.scm index e73e127..c71767e 100644 --- a/.config/guix/modules/dwm.scm +++ b/.config/guix/modules/dwm.scm @@ -8,7 +8,7 @@ bd-dwm-home-services)) (use-package-modules - image-viewers ;; sxiv + image-viewers ;; nsxiv suckless ;; dwm xdisorg ;; xdotool xorg ;; xprop @@ -24,7 +24,7 @@ (define bd-dwm-system-packages (list bd-dwm - sxiv + nsxiv xdotool xprop )) @@ -35,6 +35,7 @@ home-files-service-type `((".Xresources" ,(plain-file "Xresources" " -Sxiv.background: #000000 -Sxiv.foreground: #00C0FF +Nsxiv.window.background: #000000 +Nsxiv.window.foreground: #FFFFFF +Nsxiv.bar.font: Terminus:size=9 ")))))) diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h index ac83b81..a96eb91 100644 --- a/.config/guix/modules/dwm/config.def.h +++ b/.config/guix/modules/dwm/config.def.h @@ -39,7 +39,7 @@ static const Rule rules[] = { { "Zathura", NULL, NULL, 1 << 2, 0, -1 }, { "libreoffice",NULL, NULL, 1 << 3, 0, -1 }, { "Gimp", NULL, NULL, 1 << 4, 1, -1 }, - { "Sxiv", NULL, NULL, 1 << 6, 0, -1 }, + { "nsxiv", NULL, NULL, 1 << 6, 0, -1 }, { "mpv", NULL, NULL, 1 << 7, 0, -1 }, }; |