aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorÓscar Nájera <hi@oscarnajera.com>2021-08-08 09:09:43 +0200
committerÓscar Nájera <hi@oscarnajera.com>2021-08-08 09:18:31 +0200
commit71d2a1abb2f3e6854c7893f902c4ac38e3ac6318 (patch)
tree1417b6710ed8181bc739f972a342b5bf3cecc223
parent185eae8b3deccd5214788a3c0bca28a49ea4e2e2 (diff)
downloaddotfiles-71d2a1abb2f3e6854c7893f902c4ac38e3ac6318.tar.gz
dotfiles-71d2a1abb2f3e6854c7893f902c4ac38e3ac6318.tar.bz2
dotfiles-71d2a1abb2f3e6854c7893f902c4ac38e3ac6318.zip
Termite is discontinued and dropped from Arch
Remove it and change for recommended alacritty
-rw-r--r--config/alacritty.yml59
-rw-r--r--config/awesome/rc.lua2
-rw-r--r--config/rofi/config.rasi2
-rw-r--r--config/termite/config46
4 files changed, 61 insertions, 48 deletions
diff --git a/config/alacritty.yml b/config/alacritty.yml
new file mode 100644
index 0000000..bc8e2e7
--- /dev/null
+++ b/config/alacritty.yml
@@ -0,0 +1,59 @@
+# Colors (Gruvbox dark)
+colors:
+ primary:
+ # hard contrast background - '#1d2021'
+ background: &gruvbox_dark_bg "#282828"
+ # soft contrast background - '#32302f'
+ foreground: "#ebdbb2"
+ bright_foreground: "#fbf1c7"
+ dim_foreground: "#a89984"
+ cursor:
+ text: CellBackground
+ cursor: CellForeground
+ vi_mode_cursor:
+ text: CellBackground
+ cursor: CellForeground
+ # search:
+ # matches:
+ # foreground: '#000000'
+ # background: '#ffffff'
+ # focused_match:
+ # foreground: CellBackground
+ # background: CellForeground
+ # bar:
+ # background: ''
+ # foreground: ''
+ # line_indicator:
+ # foreground: None
+ # background: None
+ selection:
+ text: CellBackground
+ background: CellForeground
+ bright:
+ black: "#928374"
+ red: "#fb4934"
+ green: "#b8bb26"
+ yellow: "#fabd2f"
+ blue: "#83a598"
+ magenta: "#d3869b"
+ cyan: "#8ec07c"
+ white: "#ebdbb2"
+ normal:
+ black: *gruvbox_dark_bg
+ red: "#cc241d"
+ green: "#98971a"
+ yellow: "#d79921"
+ blue: "#458588"
+ magenta: "#b16286"
+ cyan: "#689d6a"
+ white: "#a89984"
+ dim:
+ black: "#32302f"
+ red: "#9d0006"
+ green: "#79740e"
+ yellow: "#b57614"
+ blue: "#076678"
+ magenta: "#8f3f71"
+ cyan: "#427b58"
+ white: "#928374"
+ # indexed_colors: []
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua
index c53e3aa..8e9172b 100644
--- a/config/awesome/rc.lua
+++ b/config/awesome/rc.lua
@@ -56,7 +56,7 @@ beautiful.init(gears.filesystem.get_themes_dir() .. "zenburn/theme.lua")
-- This is used later as the default software to run
local tools = {
- terminal = "termite",
+ terminal = "alacritty",
editor = os.getenv("EDITOR") or "nvim",
gui_editor = "emacsclient -a \"\" -c",
browser_ch = "chromium --incognito",
diff --git a/config/rofi/config.rasi b/config/rofi/config.rasi
index 6f5608e..9a27ed8 100644
--- a/config/rofi/config.rasi
+++ b/config/rofi/config.rasi
@@ -1,7 +1,7 @@
configuration {
modi: "window,run,combi";
show-icons: true;
- terminal: "termite";
+ terminal: "alacritty";
combi-modi: "window,run";
}
@import "/usr/share/rofi/themes/fancy.rasi"
diff --git a/config/termite/config b/config/termite/config
deleted file mode 100644
index 434be72..0000000
--- a/config/termite/config
+++ /dev/null
@@ -1,46 +0,0 @@
-# Solarized dark color scheme
-#
-[options]
-font = DejaVuSansMono Nerd Font 13
-
-# Generated from the base16/monokai.dark
-# http://terminal.sexy
-[colors]
-
-# special
-foreground = #f8f8f2
-foreground_bold = #f8f8f2
-cursor = #f8f8f2
-background = #272822
-
-# black
-color0 = #272822
-color8 = #75715e
-
-# red
-color1 = #f92672
-color9 = #f92672
-
-# green
-color2 = #a6e22e
-color10 = #a6e22e
-
-# yellow
-color3 = #f4bf75
-color11 = #f4bf75
-
-# blue
-color4 = #66d9ef
-color12 = #66d9ef
-
-# magenta
-color5 = #ae81ff
-color13 = #ae81ff
-
-# cyan
-color6 = #a1efe4
-color14 = #a1efe4
-
-# white
-color7 = #f8f8f2
-color15 = #f9f8f5