home/programs/waybar: simplify conditional styling
This commit is contained in:
parent
90ba974f1c
commit
f4779c6fd4
1 changed files with 6 additions and 8 deletions
|
@ -4,17 +4,16 @@
|
|||
...
|
||||
}: let
|
||||
inherit (osConfig.theme.scheme) palette;
|
||||
inherit (builtins) concatStringsSep;
|
||||
inherit (lib) mapAttrsToList mkIf mkMerge;
|
||||
inherit (lib) mapAttrsToList concatLines optionalString;
|
||||
|
||||
generateGtkColors = palette: (concatStringsSep "\n"
|
||||
generateGtkColors = palette: (concatLines
|
||||
(mapAttrsToList
|
||||
(name: color: "@define-color ${name} ${color};")
|
||||
palette));
|
||||
in {
|
||||
programs.waybar.style = mkMerge [
|
||||
(mkIf osConfig.theme.enable generateGtkColors palette)
|
||||
''
|
||||
programs.waybar.style =
|
||||
optionalString osConfig.theme.enable generateGtkColors palette
|
||||
+ ''
|
||||
* {
|
||||
/* `otf-font-awesome` is required to be installed for icons */
|
||||
border: none;
|
||||
|
@ -102,6 +101,5 @@ in {
|
|||
padding: 0 1.2em;
|
||||
color: @base08;
|
||||
}
|
||||
''
|
||||
];
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue