aboutsummaryrefslogtreecommitdiff
path: root/kbg
diff options
context:
space:
mode:
authorKenny Ballou <kb@devnulllabs.io>2023-11-06 15:49:43 -0700
committerKenny Ballou <kb@devnulllabs.io>2023-11-06 15:49:43 -0700
commitfe5e8202d69d9d57148709cd0945079d100708d9 (patch)
tree60db33ed72a263f6b5a369c1bed864b84db55a71 /kbg
parent712cc4043e2e290644e78b40a5133f8a6f3836ec (diff)
downloaddotfiles-fe5e8202d69d9d57148709cd0945079d100708d9.tar.gz
dotfiles-fe5e8202d69d9d57148709cd0945079d100708d9.tar.xz
config: pdfpc: use string-join
Signed-off-by: Kenny Ballou <kb@devnulllabs.io>
Diffstat (limited to 'kbg')
-rw-r--r--kbg/services/config/pdfpc.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/kbg/services/config/pdfpc.scm b/kbg/services/config/pdfpc.scm
index 7ddf5c7d..a4ffeb30 100644
--- a/kbg/services/config/pdfpc.scm
+++ b/kbg/services/config/pdfpc.scm
@@ -9,4 +9,4 @@
(list (simple-service 'pdfpc-config
home-files-service-type
`((".config/pdfpc/pdfpcrc"
- ,(mixed-text-file "pdfprc" "option pointer-color #268bd2\n"))))))
+ ,(mixed-text-file "pdfprc" (string-join (list "option pointer-color #268bd2") "\n")))))))