fix(theme/qt): gtk theme had no qt support

feat(i3): workspace assigns
This commit is contained in:
Patrick 2023-10-04 13:49:11 +02:00
parent ce2e1cdd93
commit 533a4879e6
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
3 changed files with 27 additions and 3 deletions

View file

@ -22,7 +22,7 @@ in {
Description = "Set a random wallpaper every 3 minutes"; Description = "Set a random wallpaper every 3 minutes";
}; };
Timer = { Timer = {
OnActiveSec = "0 sec"; OnActiveSec = "2 sec";
OnUnitActiveSec = "3 min"; OnUnitActiveSec = "3 min";
}; };
Install.WantedBy = ["timers.target"]; Install.WantedBy = ["timers.target"];

View file

@ -32,6 +32,27 @@ let
trayOutput = "primary"; trayOutput = "primary";
} }
]; ];
floating.criteria = [
{class = "Pavucontrol";}
];
assigns = {
"d" = [
{class = "^firefox$";}
];
"a" = [
{class = "^bottles$";}
{class = "^steam$";}
{class = "^prismlauncher$";}
];
"F1" = [
{class = "^Discord$";}
];
"F2" = [
{class = "^Signal$";}
{class = "^TelegramDesktop$";}
];
};
workspaceOutputAssign = let workspaceOutputAssign = let
output = out: output = out:

View file

@ -54,8 +54,11 @@
}; };
theme = lib.mkForce { theme = lib.mkForce {
name = "Orchis-purple-solid-black"; # Orchis has no support for qt
package = pkgs.orchis-theme; #name = "Orchis-purple-solid-black";
#package = pkgs.orchis-theme;
name = "WhiteSur-Dark-solid";
package = pkgs.whitesur-gtk-theme;
}; };
gtk2.extraConfig = "gtk-application-prefer-dark-theme = true"; gtk2.extraConfig = "gtk-application-prefer-dark-theme = true";