configure sway colors
This commit is contained in:
parent
aa7265e49e
commit
6382debb3b
|
@ -43,7 +43,11 @@ in {
|
||||||
cfg.monitors;
|
cfg.monitors;
|
||||||
|
|
||||||
modifier = "Mod4";
|
modifier = "Mod4";
|
||||||
focus.followMouse = true;
|
|
||||||
|
focus = {
|
||||||
|
followMouse = true;
|
||||||
|
wrapping = "workspace";
|
||||||
|
};
|
||||||
|
|
||||||
input = {
|
input = {
|
||||||
"*" = {
|
"*" = {
|
||||||
|
@ -59,8 +63,10 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
gaps = {
|
gaps = {
|
||||||
inner = 10;
|
inner = 8;
|
||||||
outer = -10;
|
outer = -10;
|
||||||
|
smartBorders = "on";
|
||||||
|
smartGaps = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
bars = singleton {
|
bars = singleton {
|
||||||
|
@ -71,17 +77,52 @@ in {
|
||||||
window = {
|
window = {
|
||||||
hideEdgeBorders = "both";
|
hideEdgeBorders = "both";
|
||||||
titlebar = false;
|
titlebar = false;
|
||||||
|
border = 2;
|
||||||
|
};
|
||||||
|
|
||||||
|
floating = {
|
||||||
|
border = 0;
|
||||||
|
titlebar = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
workspaceLayout = "tabbed";
|
workspaceLayout = "tabbed";
|
||||||
|
|
||||||
colors = {
|
colors = {
|
||||||
|
background = "#141414";
|
||||||
focused = {
|
focused = {
|
||||||
background = "#222222";
|
border = "#1c1c1c";
|
||||||
border = "#4c7899";
|
background = "#000000";
|
||||||
childBorder = "#222222";
|
text = "#eaeaea";
|
||||||
indicator = "#292d2e";
|
indicator = "#000000";
|
||||||
text = "#888888";
|
childBorder = "#000000";
|
||||||
|
};
|
||||||
|
focusedInactive = {
|
||||||
|
border = "#000000";
|
||||||
|
background = "#000000";
|
||||||
|
text = "#eaeaea";
|
||||||
|
indicator = "#000000";
|
||||||
|
childBorder = "#000000";
|
||||||
|
};
|
||||||
|
unfocused = {
|
||||||
|
border = "#000000";
|
||||||
|
background = "#000000";
|
||||||
|
text = "#eaeaea";
|
||||||
|
indicator = "#000000";
|
||||||
|
childBorder = "#000000";
|
||||||
|
};
|
||||||
|
urgent = {
|
||||||
|
border = "#ff6666";
|
||||||
|
background = "#ff6666";
|
||||||
|
text = "#eaeaea";
|
||||||
|
indicator = "#ff6666";
|
||||||
|
childBorder = "#ff6666";
|
||||||
|
};
|
||||||
|
placeholder = {
|
||||||
|
border = "#000000";
|
||||||
|
background = "#000000";
|
||||||
|
text = "#eaeaea";
|
||||||
|
indicator = "#000000";
|
||||||
|
childBorder = "#000000";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -135,7 +176,6 @@ in {
|
||||||
|
|
||||||
swaynag.enable = true;
|
swaynag.enable = true;
|
||||||
systemd.enable = true;
|
systemd.enable = true;
|
||||||
|
|
||||||
xwayland = true;
|
xwayland = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue