Update a lot of options, simplify variables, replace options with tags
This commit is contained in:
parent
dbc0ab6dd3
commit
7667ef9a1b
147 changed files with 663 additions and 928 deletions
|
@ -3,49 +3,49 @@
|
|||
wayland.windowManager.sway.config = {
|
||||
colors = {
|
||||
focused = {
|
||||
border = "#${config.look.colors.prime}";
|
||||
background = "#${config.look.colors.prime}";
|
||||
border = "#${config.vars.colors.prime}";
|
||||
background = "#${config.vars.colors.prime}";
|
||||
text = "#FFFFFF";
|
||||
indicator = "#${config.look.colors.actSplit}";
|
||||
childBorder = "#${config.look.colors.prime}";
|
||||
indicator = "#${config.vars.colors.actSplit}";
|
||||
childBorder = "#${config.vars.colors.prime}";
|
||||
};
|
||||
focusedInactive = {
|
||||
border = "#${config.look.colors.accent}";
|
||||
background = "#${config.look.colors.accent}";
|
||||
text = "#${config.look.colors.text}";
|
||||
indicator = "#${config.look.colors.split}";
|
||||
childBorder = "#${config.look.colors.accent}";
|
||||
border = "#${config.vars.colors.accent}";
|
||||
background = "#${config.vars.colors.accent}";
|
||||
text = "#${config.vars.colors.text}";
|
||||
indicator = "#${config.vars.colors.split}";
|
||||
childBorder = "#${config.vars.colors.accent}";
|
||||
};
|
||||
unfocused = {
|
||||
border = "#${config.look.colors.dark}";
|
||||
background = "#${config.look.colors.dark}";
|
||||
text = "#${config.look.colors.text}";
|
||||
indicator = "#${config.look.colors.split}";
|
||||
childBorder = "#${config.look.colors.split}";
|
||||
border = "#${config.vars.colors.dark}";
|
||||
background = "#${config.vars.colors.dark}";
|
||||
text = "#${config.vars.colors.text}";
|
||||
indicator = "#${config.vars.colors.split}";
|
||||
childBorder = "#${config.vars.colors.split}";
|
||||
};
|
||||
urgent = {
|
||||
border = "#${config.look.colors.urgent}";
|
||||
background = "#${config.look.colors.urgent}";
|
||||
text = "#${config.look.colors.text}";
|
||||
indicator = "#${config.look.colors.urgent}";
|
||||
childBorder = "#${config.look.colors.urgent}";
|
||||
border = "#${config.vars.colors.urgent}";
|
||||
background = "#${config.vars.colors.urgent}";
|
||||
text = "#${config.vars.colors.text}";
|
||||
indicator = "#${config.vars.colors.urgent}";
|
||||
childBorder = "#${config.vars.colors.urgent}";
|
||||
};
|
||||
};
|
||||
|
||||
bars = [ ];
|
||||
|
||||
fonts = {
|
||||
names = [ config.look.fonts.main ];
|
||||
names = [ config.vars.fonts.main ];
|
||||
size = 10.5;
|
||||
};
|
||||
|
||||
window = {
|
||||
border = config.look.border.int;
|
||||
border = config.vars.border.int;
|
||||
hideEdgeBorders = "smart";
|
||||
};
|
||||
|
||||
floating = {
|
||||
border = config.look.border.int;
|
||||
border = config.vars.border.int;
|
||||
titlebar = false;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue