mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 10:11:54 -05:00
remove theme.colors
This commit is contained in:
parent
cfc836943b
commit
545b892c84
|
@ -34,7 +34,7 @@ in {
|
||||||
|
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"diffEditor.ignoreTrimWhitespace" = false;
|
"diffEditor.ignoreTrimWhitespace" = false;
|
||||||
"editor.fontSize" = cfg.theme.monospaceFont.size + 3;
|
"editor.fontSize" = config.stylix.fonts.sizes.applications + 3;
|
||||||
"editor.formatOnPaste" = true;
|
"editor.formatOnPaste" = true;
|
||||||
"editor.formatOnSave" = true;
|
"editor.formatOnSave" = true;
|
||||||
"editor.formatOnType" = true;
|
"editor.formatOnType" = true;
|
||||||
|
@ -77,7 +77,7 @@ in {
|
||||||
"shellformat.flag" = "-i 4";
|
"shellformat.flag" = "-i 4";
|
||||||
|
|
||||||
"terminal.external.linuxExec" = lib.getExe cfg.defaultApps.terminal;
|
"terminal.external.linuxExec" = lib.getExe cfg.defaultApps.terminal;
|
||||||
"terminal.integrated.fontSize" = cfg.theme.monospaceFont.size + 3;
|
"terminal.integrated.fontSize" = config.stylix.fonts.sizes.terminal + 3;
|
||||||
"update.mode" = "none";
|
"update.mode" = "none";
|
||||||
"window.menuBarVisibility" = "hidden";
|
"window.menuBarVisibility" = "hidden";
|
||||||
"window.titleBarStyle" = lib.mkDefault "native";
|
"window.titleBarStyle" = lib.mkDefault "native";
|
||||||
|
|
|
@ -48,8 +48,8 @@ in {
|
||||||
|
|
||||||
auto_update = false;
|
auto_update = false;
|
||||||
autosave.after_delay.milliseconds = 1000;
|
autosave.after_delay.milliseconds = 1000;
|
||||||
buffer_font_family = cfg.theme.monospaceFont.name;
|
buffer_font_family = config.stylix.fonts.monospace.name;
|
||||||
buffer_font_size = cfg.theme.monospaceFont.size + 3;
|
buffer_font_size = config.stylix.fonts.sizes.applications + 3;
|
||||||
current_line_highlight = "line";
|
current_line_highlight = "line";
|
||||||
|
|
||||||
indent_guides = {
|
indent_guides = {
|
||||||
|
@ -89,7 +89,7 @@ in {
|
||||||
metrics = false;
|
metrics = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
terminal.font_size = cfg.theme.monospaceFont.size + 3;
|
terminal.font_size = config.stylix.fonts.sizes.terminal + 3;
|
||||||
|
|
||||||
theme = {
|
theme = {
|
||||||
dark = "Adwaita Pastel Dark";
|
dark = "Adwaita Pastel Dark";
|
||||||
|
@ -97,8 +97,8 @@ in {
|
||||||
mode = "system";
|
mode = "system";
|
||||||
};
|
};
|
||||||
|
|
||||||
ui_font_family = cfg.theme.sansFont.name;
|
ui_font_family = config.stylix.fonts.sansSerif.name;
|
||||||
ui_font_size = cfg.theme.sansFont.size + 5;
|
ui_font_size = config.stylix.fonts.sizes.applications + 4;
|
||||||
use_autoclose = false;
|
use_autoclose = false;
|
||||||
vim_mode = false;
|
vim_mode = false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -175,7 +175,6 @@ in {
|
||||||
disable_hyprland_logo = true;
|
disable_hyprland_logo = true;
|
||||||
disable_splash_rendering = true;
|
disable_splash_rendering = true;
|
||||||
focus_on_activate = true;
|
focus_on_activate = true;
|
||||||
font_family = cfg.theme.sansFont.name;
|
|
||||||
vfr = true;
|
vfr = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -149,12 +149,10 @@ in {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
startup =
|
startup = [
|
||||||
[
|
{command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1";}
|
||||||
{command = "${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1";}
|
{command = lib.getExe pkgs.autotiling;}
|
||||||
{command = lib.getExe pkgs.autotiling;}
|
];
|
||||||
]
|
|
||||||
++ lib.optional (!cfg.services.randomWallpaper.enable) {command = "${lib.getExe pkgs.swaybg} -i ${cfg.theme.wallpaper}";};
|
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
titlebar = false;
|
titlebar = false;
|
||||||
|
@ -250,7 +248,7 @@ in {
|
||||||
# corner_radius ${toString cfg.theme.borderRadius}
|
# corner_radius ${toString cfg.theme.borderRadius}
|
||||||
shadows enable
|
shadows enable
|
||||||
shadows_on_csd enable
|
shadows_on_csd enable
|
||||||
shadow_color ${cfg.theme.colors.shadow}
|
shadow_color ${config.lib.stylix.colors.withHashtag."base00"}CC
|
||||||
|
|
||||||
default_dim_inactive 0.05
|
default_dim_inactive 0.05
|
||||||
|
|
||||||
|
|
|
@ -233,59 +233,11 @@ in {
|
||||||
type = lib.types.int;
|
type = lib.types.int;
|
||||||
};
|
};
|
||||||
|
|
||||||
colors = {
|
|
||||||
text = lib.mkOption {
|
|
||||||
description = "Text color.";
|
|
||||||
default = "#FFFFFF";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
background = lib.mkOption {
|
|
||||||
description = "Background color.";
|
|
||||||
default = "#242424";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
primary = lib.mkOption {
|
|
||||||
description = "Primary color.";
|
|
||||||
default = "#78AEED"; #"#CA9EE6";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
secondary = lib.mkOption {
|
|
||||||
description = "Secondary color.";
|
|
||||||
default = "#CA9EE6"; #"#99D1DB";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
inactive = lib.mkOption {
|
|
||||||
description = "Inactive color.";
|
|
||||||
default = "#242424";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
shadow = lib.mkOption {
|
|
||||||
description = "Drop shadow color.";
|
|
||||||
default = "#1A1A1A";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
sansFont = mkFontOption "sans serif" "UbuntuSans Nerd Font" (pkgs.nerdfonts.override {fonts = ["UbuntuSans"];}) 11;
|
|
||||||
serifFont = mkFontOption "serif" "Vegur" pkgs.vegur 11;
|
|
||||||
monospaceFont = mkFontOption "monospace" "UbuntuSansMono Nerd Font" (pkgs.nerdfonts.override {fonts = ["UbuntuSans"];}) 11;
|
|
||||||
|
|
||||||
gtk.hideTitleBar = lib.mkOption {
|
gtk.hideTitleBar = lib.mkOption {
|
||||||
description = "Whether to hide GTK3/4 titlebars (useful for some window managers).";
|
description = "Whether to hide GTK3/4 titlebars (useful for some window managers).";
|
||||||
default = false;
|
default = false;
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
};
|
};
|
||||||
|
|
||||||
wallpaper = lib.mkOption {
|
|
||||||
description = "Default wallpaper.";
|
|
||||||
default = "${config.xdg.dataHome}/backgrounds/jr-korpa-9XngoIpxcEo-unsplash.jpg";
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -312,14 +312,14 @@ in {
|
||||||
|
|
||||||
xdg.configFile."nwg-drawer/drawer.css".text = ''
|
xdg.configFile."nwg-drawer/drawer.css".text = ''
|
||||||
window {
|
window {
|
||||||
background-color: alpha (${cfg.theme.colors.background}, 0.8);
|
background-color: alpha (${config.lib.stylix.colors.withHashtag."base00"}, ${toString config.stylix.opacity.popups});
|
||||||
color: ${cfg.theme.colors.text}
|
color: ${config.lib.stylix.colors.withHashtag."base05"}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* search entry */
|
/* search entry */
|
||||||
entry {
|
entry {
|
||||||
background-color: rgba (0, 0, 0, 0.2);
|
background-color: rgba (0, 0, 0, 0.2);
|
||||||
border: 4px solid ${cfg.theme.colors.primary};
|
border: alpha(${config.lib.stylix.colors.withHashtag."base07"}, ${toString config.stylix.opacity.popups});
|
||||||
border-radius: ${toString cfg.theme.borderRadius}px
|
border-radius: ${toString cfg.theme.borderRadius}px
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -330,10 +330,10 @@ in {
|
||||||
}
|
}
|
||||||
|
|
||||||
button:active, button:hover, button:focused {
|
button:active, button:hover, button:focused {
|
||||||
background-color: alpha (${cfg.theme.colors.text}, 0.2);
|
background-color: alpha (${config.lib.stylix.colors.withHashtag."base05"}, 0.2);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: ${toString cfg.theme.borderRadius}px;
|
border-radius: ${toString cfg.theme.borderRadius}px;
|
||||||
color: ${cfg.theme.colors.secondary}
|
color:${config.lib.stylix.colors.withHashtag."base02"}
|
||||||
}
|
}
|
||||||
|
|
||||||
#category-button {
|
#category-button {
|
||||||
|
|
|
@ -7,107 +7,42 @@
|
||||||
cfg = config.ar.home.theme;
|
cfg = config.ar.home.theme;
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
extraConfig = lib.attrsets.optionalAttrs (cfg.darkMode) {gtk-application-prefer-dark-theme = 1;};
|
extraCss =
|
||||||
|
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 */
|
||||||
|
margin-bottom: 50px;
|
||||||
|
margin-top: -100px;
|
||||||
|
|
||||||
extraCss = ''
|
background: transparent;
|
||||||
@define-color accent_bg_color ${cfg.colors.primary};
|
padding: 0;
|
||||||
@define-color accent_color @accent_bg_color;
|
border: 0;
|
||||||
@define-color accent_fg_color ${cfg.colors.text};
|
min-height: 0;
|
||||||
@define-color window_bg_color ${cfg.colors.background};
|
font-size: 0;
|
||||||
@define-color window_fg_color ${cfg.colors.text};
|
box-shadow: none;
|
||||||
@define-color view_bg_color ${cfg.colors.background};
|
}
|
||||||
@define-color view_fg_color @window_fg_color;
|
|
||||||
@define-color headerbar_bg_color ${cfg.colors.background};
|
|
||||||
@define-color headerbar_backdrop_color @window_bg_color;
|
|
||||||
@define-color headerbar_fg_color @window_fg_color;
|
|
||||||
|
|
||||||
@define-color popover_bg_color ${cfg.colors.background};
|
/* rm -rf window shadows */
|
||||||
@define-color popover_fg_color @view_fg_color;
|
window.csd, /* gtk4? */
|
||||||
@define-color dialog_bg_color @popover_bg_color;
|
window.csd decoration { /* gtk3 */
|
||||||
@define-color dialog_fg_color @popover_fg_color;
|
box-shadow: none;
|
||||||
@define-color card_bg_color @popover_bg_color;
|
}
|
||||||
@define-color card_fg_color @window_fg_color;
|
'';
|
||||||
@define-color sidebar_bg_color @headerbar_bg_color;
|
|
||||||
@define-color sidebar_fg_color @window_fg_color;
|
|
||||||
@define-color sidebar_backdrop_color @window_bg_color;
|
|
||||||
@define-color sidebar_shade_color rgba(0,0,0,0.25);
|
|
||||||
|
|
||||||
${
|
|
||||||
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 */
|
|
||||||
margin-bottom: 50px;
|
|
||||||
margin-top: -100px;
|
|
||||||
|
|
||||||
background: transparent;
|
|
||||||
padding: 0;
|
|
||||||
border: 0;
|
|
||||||
min-height: 0;
|
|
||||||
font-size: 0;
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* rm -rf window shadows */
|
|
||||||
window.csd, /* gtk4? */
|
|
||||||
window.csd decoration { /* gtk3 */
|
|
||||||
box-shadow: none;
|
|
||||||
}
|
|
||||||
''
|
|
||||||
}
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home = {
|
home = {
|
||||||
packages = [
|
packages = [
|
||||||
cfg.monospaceFont.package
|
|
||||||
cfg.sansFont.package
|
|
||||||
cfg.serifFont.package
|
|
||||||
pkgs.adwaita-qt
|
pkgs.adwaita-qt
|
||||||
pkgs.gnome.adwaita-icon-theme
|
pkgs.gnome.adwaita-icon-theme
|
||||||
pkgs.liberation_ttf
|
pkgs.liberation_ttf
|
||||||
];
|
];
|
||||||
|
|
||||||
pointerCursor = {
|
|
||||||
gtk.enable = true;
|
|
||||||
name = "Bibata-Modern-Classic";
|
|
||||||
package = pkgs.bibata-cursors;
|
|
||||||
size = lib.mkDefault 24;
|
|
||||||
|
|
||||||
x11 = {
|
|
||||||
enable = true;
|
|
||||||
defaultCursor = config.home.pointerCursor.name;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
fonts.fontconfig = {
|
|
||||||
enable = true;
|
|
||||||
|
|
||||||
defaultFonts = {
|
|
||||||
monospace = [cfg.monospaceFont.name];
|
|
||||||
sansSerif = [cfg.sansFont.name];
|
|
||||||
serif = [cfg.serifFont.name];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
|
||||||
|
|
||||||
theme = {
|
|
||||||
name =
|
|
||||||
if cfg.darkMode
|
|
||||||
then "adw-gtk3-dark"
|
|
||||||
else "adw-gtk3";
|
|
||||||
|
|
||||||
package = pkgs.adw-gtk3;
|
|
||||||
};
|
|
||||||
|
|
||||||
font = {inherit (cfg.sansFont) name package size;};
|
|
||||||
|
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
name =
|
name =
|
||||||
if cfg.darkMode
|
if cfg.darkMode
|
||||||
|
@ -117,8 +52,8 @@ in {
|
||||||
package = pkgs.papirus-icon-theme.override {color = "adwaita";};
|
package = pkgs.papirus-icon-theme.override {color = "adwaita";};
|
||||||
};
|
};
|
||||||
|
|
||||||
gtk3 = {inherit (gtk) extraConfig extraCss;};
|
gtk3 = {inherit (gtk) extraCss;};
|
||||||
gtk4 = {inherit (gtk) extraConfig extraCss;};
|
gtk4 = {inherit (gtk) extraCss;};
|
||||||
};
|
};
|
||||||
|
|
||||||
qt = {
|
qt = {
|
||||||
|
@ -134,24 +69,5 @@ in {
|
||||||
package = pkgs.adwaita-qt6;
|
package = pkgs.adwaita-qt6;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
dconf.settings = {
|
|
||||||
"org/gnome/desktop/background" = {
|
|
||||||
picture-uri = "file://${cfg.wallpaper}";
|
|
||||||
picture-uri-dark = "file://${cfg.wallpaper}";
|
|
||||||
};
|
|
||||||
|
|
||||||
"org/gnome/desktop/interface" = {
|
|
||||||
color-scheme =
|
|
||||||
if cfg.darkMode
|
|
||||||
then "prefer-dark"
|
|
||||||
else "prefer-light";
|
|
||||||
|
|
||||||
document-font-name = "${cfg.serifFont.name} ${toString cfg.serifFont.size}";
|
|
||||||
monospace-font-name = "${cfg.monospaceFont.name} ${toString cfg.monospaceFont.size}";
|
|
||||||
};
|
|
||||||
|
|
||||||
"org/gnome/desktop/wm/preferences".titlebar-font = "${cfg.sansFont.name} ${toString cfg.sansFont.size}";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,5 +112,7 @@ self: {
|
||||||
gammastep.enable = true;
|
gammastep.enable = true;
|
||||||
randomWallpaper.enable = true;
|
randomWallpaper.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
theme.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,5 +92,7 @@ self: {
|
||||||
gammastep.enable = true;
|
gammastep.enable = true;
|
||||||
randomWallpaper.enable = false;
|
randomWallpaper.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
theme.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,11 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [git inxi python3];
|
environment.systemPackages = with pkgs; [git inxi python3];
|
||||||
|
|
||||||
|
home-manager.sharedModules = [
|
||||||
|
{
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine-moon.yaml";
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine-moon.yaml";
|
||||||
|
|
|
@ -20,12 +20,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
preset = "LoudnessEqualizer";
|
preset = "LoudnessEqualizer";
|
||||||
};
|
};
|
||||||
|
|
||||||
theme = {
|
|
||||||
monospaceFont.size = 14;
|
|
||||||
sansFont.size = 14;
|
|
||||||
serifFont.size = 14;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -10,12 +10,6 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
preset = "LoudnessEqualizer";
|
preset = "LoudnessEqualizer";
|
||||||
};
|
};
|
||||||
|
|
||||||
theme = {
|
|
||||||
monospaceFont.size = 14;
|
|
||||||
sansFont.size = 14;
|
|
||||||
serifFont.size = 14;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue