summaryrefslogtreecommitdiff
path: root/sigils/home/services
diff options
context:
space:
mode:
Diffstat (limited to 'sigils/home/services')
-rw-r--r--sigils/home/services/hyprland.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/sigils/home/services/hyprland.scm b/sigils/home/services/hyprland.scm
index 3db3e97..eb6d270 100644
--- a/sigils/home/services/hyprland.scm
+++ b/sigils/home/services/hyprland.scm
@@ -35,8 +35,8 @@
(define (serialize-term term)
(match term
- (('rgba color) (list (format #f "rgba(~a)" (symbol->string color))))
- (('rgb color) (list (format #f "rgb(~a)" (symbol->string color))))
+ (('rgba color) (list (format #f "rgba(~a)" color)))
+ (('rgb color) (list (format #f "rgb(~a)" color)))
;; I'd say it's not the most elegant way.
(('rgba r g b a) (list (format #f "rgba(~a, ~a, ~a, ~a)" r g b a)))
(('rgb r g b) (list (format #f "rgb(~a, ~a, ~a)" r g b)))