about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/fcuny/desktop/terminal.nix12
-rw-r--r--users/fcuny/desktop/theme.nix41
2 files changed, 0 insertions, 53 deletions
diff --git a/users/fcuny/desktop/terminal.nix b/users/fcuny/desktop/terminal.nix
index d67d383..c5c419a 100644
--- a/users/fcuny/desktop/terminal.nix
+++ b/users/fcuny/desktop/terminal.nix
@@ -6,12 +6,6 @@
 
     settings = {
       env = { TERM = "xterm-256color"; };
-      colors = {
-        primary = {
-          background = "#ffffff";
-          foreground = "#000000";
-        };
-      };
       live_config_reload = true;
       draw_bold_text_with_bright_colors = true;
       selection = { save_to_clipboard = true; };
@@ -20,12 +14,6 @@
         style.blinking = "Never";
         unfocused_hollow = true;
       };
-      window = {
-        padding = {
-          x = 5;
-          y = 5;
-        };
-      };
     };
   };
 }
diff --git a/users/fcuny/desktop/theme.nix b/users/fcuny/desktop/theme.nix
index de0c5e8..e70c4ec 100644
--- a/users/fcuny/desktop/theme.nix
+++ b/users/fcuny/desktop/theme.nix
@@ -58,46 +58,5 @@ in {
         childBorder = cfg.base0B;
       };
     };
-
-    programs.alacritty.settings.colors = {
-      cursor.text = cnotation cfg.base00;
-      cursor.cursor = cnotation cfg.base04;
-
-      normal.black = cnotation cfg.base01;
-      normal.red = cnotation cfg.base0B;
-      normal.green = cnotation cfg.base0E;
-      normal.yellow = cnotation cfg.base0D;
-      normal.blue = cnotation cfg.base09;
-      normal.magenta = cnotation cfg.base0F;
-      normal.cyan = cnotation cfg.base08;
-      normal.white = cnotation cfg.base05;
-
-      bright.black = cnotation cfg.base03;
-      bright.red = cnotation cfg.base0B;
-      bright.green = cnotation cfg.base0E;
-      bright.yellow = cnotation cfg.base0D;
-      bright.blue = cnotation cfg.base09;
-      bright.magenta = cnotation cfg.base0F;
-      bright.cyan = cnotation cfg.base07;
-      bright.white = cnotation cfg.base06;
-    };
-
-    programs.i3status-rust.bars.default.settings.theme.overrides = {
-      idle_bg = alpha cfg.base03 "DD";
-      idle_fg = cfg.base05;
-
-      info_bg = alpha cfg.base06 "DD";
-      info_fg = cfg.base00;
-
-      good_bg = alpha cfg.base09 "DD";
-      good_fg = cfg.base00;
-
-      warning_bg = alpha cfg.base0D "DD";
-      warning_fg = cfg.base00;
-
-      critical_bg = alpha cfg.base0B "DD";
-      critical_fg = cfg.base04;
-    };
   })]);
-
 }