diff --git a/shared/home/gui/sway.nix b/shared/home/gui/sway.nix index 9a10565..590f69f 100644 --- a/shared/home/gui/sway.nix +++ b/shared/home/gui/sway.nix @@ -72,6 +72,21 @@ in with lib; { terminal = "kitty --single-instance"; bars = []; + gaps = { + inner = 4; + outer = 2; + }; + + colors = { + focused = rec { + text = "#ffffff"; + border = "#7c56c4"; + background = border; + childBorder = border; + indicator = border; + }; + }; + # Directional keys modifier = mod; fonts = { diff --git a/shared/home/gui/term.nix b/shared/home/gui/term.nix index 579dbda..6906e0b 100644 --- a/shared/home/gui/term.nix +++ b/shared/home/gui/term.nix @@ -11,6 +11,7 @@ let theme = config.theme; in { scrollback_lines = 5000000; background = "#${theme.background.minor}"; bold_font = "Fira Code Medium"; + window_padding_width = 2; }; font = { diff --git a/shared/home/gui/waybar.nix b/shared/home/gui/waybar.nix index 2fdc6c1..7b98175 100644 --- a/shared/home/gui/waybar.nix +++ b/shared/home/gui/waybar.nix @@ -133,7 +133,7 @@ in { } window#waybar { - background-color: rgba(0, 0, 0, 0.7); + background-color: rgba(0, 0, 0, 0.45); } #battery, diff --git a/shared/home/programs.nix b/shared/home/programs.nix index 6f671d8..aec0ce0 100644 --- a/shared/home/programs.nix +++ b/shared/home/programs.nix @@ -38,7 +38,7 @@ programs.helix = { enable = true; settings = { - theme = "github_dark_dimmed"; + theme = "monokai_pro_spectrum"; }; };