From 9936658ec436723829ff52ec35044ce6551867e7 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 17 Aug 2024 22:55:21 +0200 Subject: [PATCH] fix: dwl substitutes --- home/modules/ruther/home/dwl/wm.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/home/modules/ruther/home/dwl/wm.scm b/home/modules/ruther/home/dwl/wm.scm index c265496..76c2915 100644 --- a/home/modules/ruther/home/dwl/wm.scm +++ b/home/modules/ruther/home/dwl/wm.scm @@ -3,8 +3,12 @@ #:use-module (gnu packages wm) #:use-module (gnu packages xorg) #:use-module (gnu packages bash) + #:use-module (gnu packages emacs) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages terminals) #:use-module (ruther packages wayland) + #:use-module (ruther home passwords) #:use-module (guix build-system trivial) @@ -59,10 +63,10 @@ (lambda _ (copy-file #$(local-file "config.h") "config.h") (substitute* "config.h" - (("\"foot\"") (string-append #$foot "/bin/foot")) - (("\"rofi\"") (string-append #$rofi-wayland "/bin/rofi")) - (("\"passmenu\"") (string-append #$password-store-wl "/bin/passmenu")) - (("\"emacsclient\"") (string-append #$emacs-pgtk "/bin/emacsclient")))))))))))) + (("\"foot\"") (string-append "\"" #$foot "/bin/foot\"")) + (("\"rofi\"") (string-append "\"" #$rofi-wayland "/bin/rofi\"")) + (("\"passmenu\"") (string-append "\"" #$password-store-wl "/bin/passmenu\"")) + (("\"emacsclient\"") (string-append "\"" #$emacs-pgtk "/bin/emacsclient\"")))))))))))) ;; Packages I use when in the WM, it's dependent on those. (define wm-packages -- 2.48.1