Fix kdeglobals generation
This commit is contained in:
parent
ddd279f6e9
commit
95219ac876
@ -11,7 +11,7 @@ let
|
||||
let
|
||||
mvalue = if builtins.isBool value then
|
||||
(if value then "true" else "false")
|
||||
else if (builtins.isString value && key != "include-file") then
|
||||
else if builtins.isString value then
|
||||
value
|
||||
else
|
||||
builtins.toString value;
|
||||
|
@ -19,13 +19,13 @@ with pkgs.my-lib; {
|
||||
in {
|
||||
services.kdeconnect.enable = true;
|
||||
|
||||
xdg.configFile."kdeglobals".text = with thmDec; genIni {
|
||||
xdg.configFile."kdeglobals".text = with thmDec; lib.generators.toGitINI {
|
||||
"Colors:Button" = {
|
||||
BackgroundAlternate = base01;
|
||||
BackgroundNormal = base00;
|
||||
BackgroundNormal = base01;
|
||||
DecorationFocus = base02;
|
||||
DecorationHover = base02;
|
||||
ForegroundActive = base02;
|
||||
ForegroundActive = base05;
|
||||
ForegroundInactive = base01;
|
||||
ForegroundLink = base0D;
|
||||
ForegroundNegative = base08;
|
||||
@ -36,7 +36,7 @@ with pkgs.my-lib; {
|
||||
};
|
||||
"Colors:Complementary" = {
|
||||
BackgroundAlternate = base01;
|
||||
BackgroundNormal = base00;
|
||||
BackgroundNormal = base03;
|
||||
DecorationFocus = base02;
|
||||
DecorationHover = base02;
|
||||
ForegroundActive = base09;
|
||||
|
Loading…
Reference in New Issue
Block a user