Reviewed-on: https://codeberg.org/tmayoff/.dotfiles/pulls/39
Co-authored-by: Tyler Mayoff <tyler@tylermayoff.com>
Co-committed-by: Tyler Mayoff <tyler@tylermayoff.com>
This commit is contained in:
Tyler Mayoff 2025-08-31 20:06:20 +02:00 committed by tmayoff
parent 1afbb8fb3b
commit 7ccdf27209
11 changed files with 818 additions and 29 deletions

View file

@ -1,4 +1,4 @@
{...}: {
{pkgs, ...}: {
services.darkman = {
enable = true;
settings = {
@ -6,15 +6,25 @@
};
lightModeScripts = {
fish = ''
yes | fish_config theme save "Rosé Pine Dawn"
# fish = ''
# yes | fish_config theme save "Rosé Pine Dawn"
# '';
gtk-theme = ''
${pkgs.dconf}/bin/dconf write \
/org/gnome/desktop/interface/color-scheme "'prefer-light'"
'';
};
darkModeScripts = {
fish = ''
yes | fish_config theme save "Rosé Pine"
gtk-theme = ''
${pkgs.dconf}/bin/dconf write \
/org/gnome/desktop/interface/color-scheme "'prefer-dark'"
'';
# fish = ''
# yes | fish_config theme save "Rosé Pine"
# '';
};
};
}