update theming
This commit is contained in:
parent
007d4f88f6
commit
9e7af86826
|
@ -1,6 +1,11 @@
|
||||||
{ config, pkgs, lib, inputs, ... }: {
|
{ config, pkgs, lib, inputs, ... }: let
|
||||||
|
font = pkgs.uservars.font;
|
||||||
|
gtk_theme = "Orchis-Red-Dark-Compact";
|
||||||
|
icon_theme = "Papirus-Dark";
|
||||||
|
cursor_theme = "capitaine-cursors";
|
||||||
|
in {
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
name = "capitaine-cursors";
|
name = cursor_theme;
|
||||||
size = 32;
|
size = 32;
|
||||||
package = pkgs.capitaine-cursors;
|
package = pkgs.capitaine-cursors;
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
|
@ -8,15 +13,15 @@
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
font = {
|
font = {
|
||||||
name = pkgs.uservars.font.interface;
|
name = font.interface;
|
||||||
size = pkgs.uservars.font.size.medium;
|
size = font.size.medium;
|
||||||
};
|
};
|
||||||
theme = {
|
theme = {
|
||||||
name = "Orchis-Red-Dark-Compact";
|
name = gtk_theme;
|
||||||
package = pkgs.orchis_theme_compact;
|
package = pkgs.orchis_theme_compact;
|
||||||
};
|
};
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
name = "Papirus-Dark";
|
name = icon_theme;
|
||||||
package = pkgs.papirus_red;
|
package = pkgs.papirus_red;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -26,6 +31,34 @@
|
||||||
# # style.package = pkgs.libsForQt5.qtstyleplugins;
|
# # style.package = pkgs.libsForQt5.qtstyleplugins;
|
||||||
# # style.name = "gtk2";
|
# # style.name = "gtk2";
|
||||||
# };
|
# };
|
||||||
|
|
||||||
|
# fonts.fontconfig.enable = true;
|
||||||
|
xdg.configFile = {
|
||||||
|
"qt5ct/qt5ct.conf".text = ''
|
||||||
|
[Appearance]
|
||||||
|
# color_scheme_path=/nix/store/f07mk0vrm47jxw3y5v99hxncy0w4vcyq-qt5ct-1.5/share/qt5ct/colors/darker.conf
|
||||||
|
custom_palette=false
|
||||||
|
icon_theme=${ icon_theme }
|
||||||
|
standard_dialogs=default
|
||||||
|
style=kvantum-dark
|
||||||
|
|
||||||
|
# [Fonts]
|
||||||
|
# fixed=@Variant(\0\0\0@\0\0\0\x1c\0H\0\x61\0\x63\0k\0 \0N\0\x65\0r\0\x64\0 \0\x46\0o\0n\0t@(\0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0\x32\x10)
|
||||||
|
# general=@Variant(\0\0\0@\0\0\0\x1e\0L\0i\0\x62\0\x65\0r\0\x61\0t\0i\0o\0n\0 \0S\0\x61\0n\0s@(\0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0\x32\x10)
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
services.xsettingsd = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
"Gtk/FontName" = "${ font.interface } ${toString font.size.small }";
|
||||||
|
"Net/ThemeName" = "${ gtk_theme }";
|
||||||
|
"Net/IconThemeName" = "${ icon_theme }";
|
||||||
|
"Gtk/CursorThemeName" = "${ cursor_theme }";
|
||||||
|
"Gtk/CursorThemeSize" = 24;
|
||||||
|
"Net/SoundThemeName" = "freedesktop" ;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
QT_QPA_PLATFORMTHEME = "qt5ct";
|
QT_QPA_PLATFORMTHEME = "qt5ct";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue