mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 00:53:55 -05:00
theme: borderRadius -> borders.radius
This commit is contained in:
parent
659d26148a
commit
38ce53c779
|
@ -10,7 +10,7 @@ in {
|
|||
enable = true;
|
||||
settings = {
|
||||
border = {
|
||||
radius = cfg.theme.borderRadius;
|
||||
radius = cfg.theme.borders.radius;
|
||||
width = 4;
|
||||
};
|
||||
|
||||
|
|
|
@ -89,7 +89,7 @@ in {
|
|||
background-color = mkLiteral "@background";
|
||||
border = 4;
|
||||
border-color = mkLiteral "@blue";
|
||||
border-radius = mkLiteral "${toString cfg.theme.borderRadius}";
|
||||
border-radius = mkLiteral "${toString cfg.theme.borders.radius}";
|
||||
};
|
||||
|
||||
message = {
|
||||
|
|
|
@ -118,7 +118,7 @@ in {
|
|||
"ignorezero,waybar"
|
||||
];
|
||||
|
||||
rounding = cfg.theme.borderRadius;
|
||||
rounding = cfg.theme.borders.radius;
|
||||
shadow_range = 4;
|
||||
shadow_render_power = 3;
|
||||
};
|
||||
|
|
|
@ -256,7 +256,7 @@ in {
|
|||
blur enable
|
||||
blur_passes 2
|
||||
|
||||
# corner_radius ${toString cfg.theme.borderRadius}
|
||||
# corner_radius ${toString cfg.theme.borders.radius}
|
||||
shadows enable
|
||||
shadows_on_csd enable
|
||||
shadow_color ${config.lib.stylix.colors.withHashtag."base00"}CC
|
||||
|
|
|
@ -201,11 +201,13 @@ in {
|
|||
theme = {
|
||||
enable = lib.mkEnableOption "Gtk, Qt, and application colors.";
|
||||
|
||||
borderRadius = lib.mkOption {
|
||||
borders = {
|
||||
radius = lib.mkOption {
|
||||
description = "Global border radius.";
|
||||
default = 10;
|
||||
type = lib.types.int;
|
||||
};
|
||||
};
|
||||
|
||||
gtk.hideTitleBar = lib.mkOption {
|
||||
description = "Whether to hide GTK3/4 titlebars (useful for some window managers).";
|
||||
|
|
|
@ -10,7 +10,7 @@ in {
|
|||
services.mako = {
|
||||
actions = true;
|
||||
anchor = "bottom-right";
|
||||
borderRadius = cfg.theme.borderRadius;
|
||||
borderRadius = cfg.theme.borders.radius;
|
||||
borderSize = 4;
|
||||
defaultTimeout = 10000;
|
||||
enable = true;
|
||||
|
|
|
@ -26,7 +26,7 @@ in {
|
|||
text = ''
|
||||
window#osd {
|
||||
padding: 12px 20px;
|
||||
border-radius: ${toString cfg.theme.borderRadius}px;
|
||||
border-radius: ${toString cfg.theme.borders.radius}px;
|
||||
border: 4px solid alpha(${config.lib.stylix.colors.withHashtag."base07"}, ${toString config.stylix.opacity.popups});
|
||||
background: alpha(${config.lib.stylix.colors.withHashtag."base01"}, ${toString config.stylix.opacity.popups});
|
||||
}
|
||||
|
|
|
@ -301,7 +301,7 @@ in {
|
|||
}
|
||||
|
||||
#workspaces button {
|
||||
border-radius: ${toString cfg.theme.borderRadius};
|
||||
border-radius: ${toString cfg.theme.borders.radius};
|
||||
}
|
||||
|
||||
#workspaces button.active,
|
||||
|
@ -327,7 +327,7 @@ in {
|
|||
#submap,
|
||||
#mode {
|
||||
background-color: ${config.lib.stylix.colors.withHashtag."base08"};
|
||||
border-radius: ${toString cfg.theme.borderRadius};
|
||||
border-radius: ${toString cfg.theme.borders.radius};
|
||||
color: ${config.lib.stylix.colors.withHashtag."base00"};
|
||||
font-weight: bold;
|
||||
}
|
||||
|
@ -352,25 +352,25 @@ in {
|
|||
entry {
|
||||
background-color: rgba (0, 0, 0, 0.2);
|
||||
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.borders.radius}px
|
||||
}
|
||||
|
||||
button, image {
|
||||
background: none;
|
||||
border: none;
|
||||
border-radius: ${toString cfg.theme.borderRadius}px
|
||||
border-radius: ${toString cfg.theme.borders.radius}px
|
||||
}
|
||||
|
||||
button:active, button:hover, button:focused {
|
||||
background-color: alpha (${config.lib.stylix.colors.withHashtag."base05"}, 0.2);
|
||||
border: none;
|
||||
border-radius: ${toString cfg.theme.borderRadius}px;
|
||||
border-radius: ${toString cfg.theme.borders.radius}px;
|
||||
color: ${config.lib.stylix.colors.withHashtag."base0D"}
|
||||
}
|
||||
|
||||
#category-button {
|
||||
margin: 0 10px 0 10px;
|
||||
border-radius: ${toString cfg.theme.borderRadius}px
|
||||
border-radius: ${toString cfg.theme.borders.radius}px
|
||||
}
|
||||
|
||||
#pinned-box {
|
||||
|
@ -381,7 +381,7 @@ in {
|
|||
#files-box {
|
||||
padding: 5px;
|
||||
border: 1px dotted gray;
|
||||
border-radius: ${toString cfg.theme.borderRadius}px
|
||||
border-radius: ${toString cfg.theme.borders.radius}px
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -37,7 +37,7 @@ in {
|
|||
|
||||
stylix.targets.gtk.extraCss = ''
|
||||
// Control rounded corners
|
||||
window.background { border-radius: ${toString cfg.borderRadius}; }
|
||||
window.background { border-radius: ${toString cfg.borders.radius}; }
|
||||
|
||||
${
|
||||
lib.strings.optionalString
|
||||
|
|
|
@ -115,7 +115,7 @@ self: {
|
|||
|
||||
theme = {
|
||||
enable = true;
|
||||
borderRadius = 0;
|
||||
borders.radius = 0;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue