aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/rofi.scm
diff options
context:
space:
mode:
Diffstat (limited to 'oni/home/services/rofi.scm')
-rw-r--r--oni/home/services/rofi.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/oni/home/services/rofi.scm b/oni/home/services/rofi.scm
index 2cb85df..b3fa65f 100644
--- a/oni/home/services/rofi.scm
+++ b/oni/home/services/rofi.scm
@@ -95,18 +95,18 @@
"\n}\n")))
(define (format-rofi-theme theme)
- (let ((keys (map (lambda (s)
+ (let ((keys (map (λ (s)
(if (symbol? s)
(symbol->string s)
(object->string s)))
(butlast theme 1)))
(values (car (list-tail theme (- (length theme) 1)))))
- (string-append (string-join keys ", ")
- " {\n "
- (string-join
- (map format-rofi-config values)
- "\n ")
- "\n}\n")))
+ (string-append (string-join keys ", ")
+ " {\n "
+ (string-join
+ (map format-rofi-config values)
+ "\n ")
+ "\n}\n")))
(define (serialize-rofi-theme theme)
(string-join (map format-rofi-theme theme) "\n"))