mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 14:33:56 -05:00
95 lines
2.5 KiB
Nix
95 lines
2.5 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
cfg = config.ar.home.theme;
|
|
in {
|
|
config = lib.mkIf cfg.enable {
|
|
home.packages = [
|
|
pkgs.gnome.adwaita-icon-theme
|
|
pkgs.liberation_ttf
|
|
];
|
|
|
|
gtk.iconTheme = {
|
|
name =
|
|
if config.stylix.polarity == "dark"
|
|
then "Papirus-Dark"
|
|
else "Papirus";
|
|
|
|
package = pkgs.papirus-icon-theme.override {color = "adwaita";};
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "qtct";
|
|
|
|
style = {
|
|
name =
|
|
if config.stylix.polarity == "dark"
|
|
then "Adwaita-Dark"
|
|
else "Adwaita";
|
|
|
|
package = pkgs.adwaita-qt;
|
|
};
|
|
};
|
|
|
|
stylix.targets.gtk.extraCss = ''
|
|
window.background { border-radius: ${toString cfg.borders.radius}; }
|
|
|
|
tooltip {
|
|
&.background {
|
|
background-color: alpha(${config.lib.stylix.colors.withHashtag.base00}, ${builtins.toString config.stylix.opacity.popups});
|
|
border: 1px solid ${config.lib.stylix.colors.withHashtag.base0D};
|
|
}
|
|
|
|
background-color: alpha(${config.lib.stylix.colors.withHashtag.base00}, ${builtins.toString config.stylix.opacity.popups});
|
|
border-radius: ${toString cfg.borders.radius};
|
|
border: 1px solid ${config.lib.stylix.colors.withHashtag.base0D};
|
|
color: white;
|
|
}
|
|
|
|
${
|
|
lib.optionalString (config.stylix.polarity == "light") "
|
|
tooltip {
|
|
&.background { background-color: alpha(${config.lib.stylix.colors.withHashtag.base05}, ${builtins.toString config.stylix.opacity.popups}); }
|
|
background-color: alpha(${config.lib.stylix.colors.withHashtag.base05}, ${builtins.toString config.stylix.opacity.popups});
|
|
}"
|
|
}
|
|
|
|
${
|
|
lib.strings.optionalString
|
|
cfg.gtk.hideTitleBar
|
|
''
|
|
/* No (default) title bar on wayland */
|
|
headerbar.default-decoration {
|
|
/* You may need to tweak these values depending on your GTK theme */
|
|
border-radius: 0;
|
|
border: 0;
|
|
box-shadow: none;
|
|
font-size: 0;
|
|
margin-bottom: 50px;
|
|
margin-top: -100px;
|
|
min-height: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.titlebar,
|
|
.titlebar .background
|
|
{
|
|
border-radius: 0;
|
|
}
|
|
|
|
/* rm -rf window shadows */
|
|
window.csd, /* gtk4? */
|
|
window.csd decoration { /* gtk3 */
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
}
|
|
''
|
|
}
|
|
'';
|
|
};
|
|
}
|