polybar: correcting indentation

This commit is contained in:
Jonathan Reeve 2018-08-29 11:30:30 -04:00
parent 6d7d5106e6
commit f4c13d3b54

View file

@ -10,7 +10,7 @@ let
toPolybarIni = generators.toINI {
mkKeyValue = key: value:
let
let
quoted = v:
if hasPrefix " " v || hasSuffix " " v
then ''"${v}"''
@ -20,7 +20,7 @@ let
if isBool value then (if value then "true" else "false")
else if (isString value && key != "include-file") then quoted value
else toString value;
in
in
"${key}=${value'}";
};