commit bd82c8a6500da54f8b5848c9dfc59ac6dca8a45b
parent 7b1471e99b41e5cd9a8702d4c023249859d7837a
Author: Francesco Saccone <francesco@francescosaccone.com>
Date: Sat, 17 May 2025 17:35:10 +0200
style: reformat with 'nix fmt'
Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/modules/home-manager/sway/bar/default.nix b/modules/home-manager/sway/bar/default.nix
@@ -41,25 +41,25 @@
colors = {
activeWorkspace = {
- background = colors.background;
+ inherit (colors) background;
border = colors.foreground;
text = colors.foreground;
};
- background = colors.background;
+ inherit (colors) background;
focusedWorkspace = {
background = colors.foreground;
border = colors.foreground;
text = colors.background;
};
inactiveWorkspace = {
- background = colors.background;
+ inherit (colors) background;
border = colors.background;
text = colors.foreground;
};
separator = colors.background;
statusline = colors.foreground;
urgentWorkspace = {
- background = colors.background;
+ inherit (colors) background;
border = colors.red;
text = colors.foreground;
};