Apply cursor theme to KDE

This commit is contained in:
Daniel Thwaites 2023-12-23 12:34:41 +00:00
parent ecbbe933a9
commit 96f0794dbd
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

View file

@ -109,6 +109,12 @@ let
ToolbarIcons = icons;
};
kcminputrc = ''
[Mouse]
cursorSize[$i]=${toString config.stylix.cursor.size}
cursorTheme[$i]=${config.stylix.cursor.name}
'';
kscreenlockerrc = ''
[Greeter][Wallpaper][org.kde.image][General][$i]
Image=${config.stylix.image}
@ -117,11 +123,12 @@ let
configDir = pkgs.runCommandLocal "stylix-kde"
{
kdeglobals = (pkgs.formats.ini {}).generate "kdeglobals" kdeglobals;
inherit kscreenlockerrc;
inherit kcminputrc kscreenlockerrc;
}
''
mkdir $out
cp $kdeglobals $out/kdeglobals
echo "$kcminputrc" >$out/kcminputrc
echo "$kscreenlockerrc" >$out/kscreenlockerrc
'';