fix(theme/qt): gtk theme had no qt support
feat(i3): workspace assigns
This commit is contained in:
parent
ce2e1cdd93
commit
533a4879e6
|
@ -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"];
|
||||||
|
|
|
@ -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:
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in a new issue