Set whatsapp appearance based on scheme variant

This commit is contained in:
Evie Litherland-Smith 2024-12-24 08:20:12 +00:00
parent 56cdefd666
commit 6077814878

View file

@ -205,7 +205,11 @@
fill_shape=false fill_shape=false
''; '';
# WhatsApp config # WhatsApp config
"whatsapp-for-linux/settings.conf" = { "whatsapp-for-linux/settings.conf" =
let
inherit (config.lib.stylix.scheme) variant;
in
{
force = true; force = true;
text = '' text = ''
[web] [web]
@ -216,6 +220,9 @@
notification-sounds=true notification-sounds=true
close-to-tray=true close-to-tray=true
start-in-tray=true start-in-tray=true
[appearance]
prefer-dark-theme=${if variant == "dark" then "true" else "false"}
''; '';
}; };
# Teams config # Teams config