diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-01-25 23:14:46 +0000 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-01-25 23:14:46 +0000 |
commit | 5713b1596db5854e3e54e2ab95e1af3f65fd71bc (patch) | |
tree | cfe60d603fc66b03896a5ebdaf07b7dff2fdab32 | |
parent | af0105a2c7877d1ea92543fbca6ff12395590064 (diff) |
services: spotifyd: fix misplaced bracket
-rw-r--r-- | yellowsquid/services/spotifyd.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yellowsquid/services/spotifyd.scm b/yellowsquid/services/spotifyd.scm index 137280e..0aa3bbf 100644 --- a/yellowsquid/services/spotifyd.scm +++ b/yellowsquid/services/spotifyd.scm @@ -72,7 +72,7 @@ "[global]\n" ,@(match username (('raw value) (put-string "username" value)) - (('cmd value) (put-string "username_cmd" value)) + (('cmd value) (put-string "username_cmd" value))) ,@(if use-keyring? (put-boolean "use_keyring" #t) (match password @@ -95,7 +95,7 @@ ,@(put-maybe "normalisation_pregain" normalisation-pregain #f) ,@(put-maybe "zeroconf_port" zeroconf-port #f) ,@(put-maybe "proxy" proxy #f) - ,@(put-string "device_type" device-type)))))) + ,@(put-string "device_type" device-type))))) (define (spotifyd-shepherd-service config) (list (shepherd-service |