diff --git a/modules/desktop-environment/home/panels/eww/configDir/eww.css b/modules/desktop-environment/home/panels/eww/configDir/eww.css index a61a23f..94ff7aa 100644 --- a/modules/desktop-environment/home/panels/eww/configDir/eww.css +++ b/modules/desktop-environment/home/panels/eww/configDir/eww.css @@ -2,12 +2,9 @@ label { font: 14pt "Departure Mono Nerd Font"; } -.background { - background-color: #1d2021; -} - .workspaces button { border: 0px; + background-color: #282828; } .workspaces button.urgent { diff --git a/modules/desktop-environment/home/terminal.nix b/modules/desktop-environment/home/terminal.nix index cfa9ac2..c8b3b54 100644 --- a/modules/desktop-environment/home/terminal.nix +++ b/modules/desktop-environment/home/terminal.nix @@ -2,13 +2,13 @@ programs.kitty = { enable = true; font = { - name = "Departure Mono Nerd Font"; - size = 12; + name = "FiraCode Nerd Font"; + size = 11; }; keybindings = { "ctrl+shift+n" = "new_os_window_with_cwd"; }; - settings = rec { + settings = { #adjust_column_width = "70%"; color0 = "#282828"; color8 = "#928374"; @@ -26,8 +26,8 @@ color14 = "#8ec07c"; color7 = "#a89984"; color15 = "#ebdbb2"; - foreground = color15; - background = "#1d2021"; + foreground = "#ebdbb2"; + background = "#282828"; confirm_os_window_close = 0; }; }; diff --git a/modules/shell/helix.nix b/modules/shell/helix.nix index 1f8a2f2..ad5b857 100644 --- a/modules/shell/helix.nix +++ b/modules/shell/helix.nix @@ -25,7 +25,7 @@ defaultEditor = true; package = helix-inline-diags.outputs.packages."x86_64-linux".default; settings = { - theme = "gruvbox_dark_hard"; + theme = "gruvbox"; editor = { line-number = "relative"; bufferline = "multiple"; diff --git a/modules/shell/nu/config.nu b/modules/shell/nu/config.nu index 9a53c97..c2348f0 100644 --- a/modules/shell/nu/config.nu +++ b/modules/shell/nu/config.nu @@ -73,7 +73,6 @@ $env.config = { } history: { - file_format: sqlite, max_size: 1_000_000_000 # Session has to be reloaded for this to take effect isolation: false } diff --git a/modules/shell/nu/env.nu b/modules/shell/nu/env.nu index 5df3a55..908d237 100644 --- a/modules/shell/nu/env.nu +++ b/modules/shell/nu/env.nu @@ -35,9 +35,9 @@ $env.PROMPT_COMMAND = {|| let deco = if ($env.CMD_COUNT == 0) { flag $TRANS "=" $len } else if ($env.CMD_COUNT | is even) { - flag $LESBIAN "–" $len + flag $LESBIAN "-" $len } else { - flag $TRANS "–" $len + flag $TRANS "-" $len }; $item | append $deco | str join