Skip to content

Commit

Permalink
treewide: change window manager style guide (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
diniamo authored Jun 8, 2024
1 parent 1d3826c commit f0ddd45
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions docs/src/styling.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ An urgent window is one which is grabbing for attention - Windows shows this by
a flashing orange taskbar icon.

- Unfocused window border: base03
- Focused window border: base0A
- Unfocused window border in group: base0D
- Focused window border in group: base06
- Urgent window border: base07
- Focused window border: base0D
- Unfocused window border in group: base03
- Focused window border in group: base0D
- Urgent window border: base08
- Window title text: base05

## Notifications and Popups
Expand Down
8 changes: 4 additions & 4 deletions modules/bspwm/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ in {

config = lib.mkIf config.stylix.targets.bspwm.enable {
xsession.windowManager.bspwm.settings = {
active_border_color = colors.base08;
normal_border_color = colors.base02;
focused_border_color = colors.base0F;
presel_feedback_color = colors.base08;
normal_border_color = colors.base03;
active_border_color = colors.base0C;
focused_border_color = colors.base0D;
presel_feedback_color = colors.base00;
};
};
}
8 changes: 4 additions & 4 deletions modules/hyprland/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ let
settings = {
decoration."col.shadow" = rgba base00 "99";
general = {
"col.active_border" = rgb base0A;
"col.active_border" = rgb base0D;
"col.inactive_border" = rgb base03;
};
group = {
"col.border_inactive" = rgb base0D;
"col.border_active" = rgb base06;
"col.border_locked_active" = rgb base06;
"col.border_inactive" = rgb base03;
"col.border_active" = rgb base0D;
"col.border_locked_active" = rgb base0C;
};
misc.background_color = rgb base00;
};
Expand Down
2 changes: 1 addition & 1 deletion modules/i3/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ with config.lib.stylix.colors.withHashtag;
let
text = base05;
urgent = base08;
focused = base0A;
focused = base0D;
unfocused = base03;

fonts = let
Expand Down
2 changes: 1 addition & 1 deletion modules/sway/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ with config.lib.stylix.colors.withHashtag;
let
text = base05;
urgent = base08;
focused = base0A;
focused = base0D;
unfocused = base03;

fonts = {
Expand Down

0 comments on commit f0ddd45

Please sign in to comment.