aboutsummaryrefslogtreecommitdiffstats
path: root/oni/home/services/picom.scm
diff options
context:
space:
mode:
authorGravatar Tom Willemse2023-06-20 23:06:25 -0700
committerGravatar Tom Willemse2023-06-20 23:06:25 -0700
commit8e2f5eed4a253b313d7503790ecc6450e8dcfd15 (patch)
tree4096a92e64b444f98f3c65efce8a1fdf5709fb89 /oni/home/services/picom.scm
parentb775263a344a12c1dadc820cb991e3f50086b209 (diff)
downloadnew-dotfiles-8e2f5eed4a253b313d7503790ecc6450e8dcfd15.tar.gz
new-dotfiles-8e2f5eed4a253b313d7503790ecc6450e8dcfd15.zip
Replace all ‘lambda’ occurrences with ‘λ’
Diffstat (limited to 'oni/home/services/picom.scm')
-rw-r--r--oni/home/services/picom.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/oni/home/services/picom.scm b/oni/home/services/picom.scm
index 332ad89..723895d 100644
--- a/oni/home/services/picom.scm
+++ b/oni/home/services/picom.scm
@@ -34,7 +34,7 @@
(symbol->string field)
": {\n"
(apply string-append
- (map (lambda (type)
+ (map (λ (type)
(string-append
" "
(symbol->string (car type))
@@ -44,7 +44,7 @@
(string-append
"{ "
(apply string-append
- (map (lambda (option)
+ (map (λ (option)
(string-append (symbol->string (car option)) " = " (if (cdr option) "true" "false")))
(cdr type)))
" },"))
@@ -61,7 +61,7 @@
(define (serialize-list field value)
(string-append (symbol->string field) " = [\n"
- (apply string-append (map (lambda (item)
+ (apply string-append (map (λ (item)
(string-append " \"" item "\",\n"))
value))
"];\n"))
@@ -166,7 +166,7 @@
(computed-file
"picom.conf"
#~(call-with-output-file #$output
- (lambda (port)
+ (λ (port)
(display #$(serialize-configuration config home-picom-configuration-fields) port)))))
(define (home-picom-files-service config)