Fix helix search all highlights, use waybar without systemd, add borders to all sway windows

This commit is contained in:
Daniel Flanagan 2023-10-30 20:11:08 -05:00
parent 840e93de8a
commit 5a0d5b01b1
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
3 changed files with 6 additions and 10 deletions

View file

@ -374,7 +374,7 @@
"ui.cursorline.primary" = {bg = bg3;}; "ui.cursorline.primary" = {bg = bg3;};
"ui.highlight" = { "ui.highlight" = {
bg = primary; bg = bg3;
fg = bg; fg = bg;
modifiers = ["bold"]; modifiers = ["bold"];
}; };

View file

@ -128,8 +128,7 @@
startup = [ startup = [
{ {
command = "systemctl --user restart waybar"; command = "waybar";
always = true;
} }
{ {
command = lib.concatStringsSep " " [ command = lib.concatStringsSep " " [
@ -317,8 +316,8 @@
}; };
focusedInactive = { focusedInactive = {
background = bg; background = bg;
border = bg; border = bg3;
childBorder = bg; childBorder = bg3;
indicator = bg; indicator = bg;
text = bg; text = bg;
}; };
@ -331,8 +330,8 @@
}; };
unfocused = { unfocused = {
background = bg; background = bg;
border = bg; border = bg3;
childBorder = bg; childBorder = bg3;
indicator = bg; indicator = bg;
text = text; text = text;
}; };

View file

@ -346,8 +346,5 @@
/* background-color: #51a37a; */ /* background-color: #51a37a; */
} }
''; '';
systemd = {
enable = true;
};
}; };
} }