Skip to content

Commit

Permalink
make theme consistent over programs, try alacritty
Browse files Browse the repository at this point in the history
  • Loading branch information
kpa28-git committed Dec 18, 2023
1 parent a042ddf commit 4608025
Show file tree
Hide file tree
Showing 12 changed files with 433 additions and 217 deletions.
24 changes: 2 additions & 22 deletions .Xresources
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

!! Global and Terminal Font Settings
!! (Set Monospace font alias in $XDG_CONFIG_HOME/fontconfig/fonts.conf)
*.font: Monospace:pixelsize=28:dpi:192:antialias:true:autohint:false:hinting:true; 28
*.font: Monospace:pixelsize=32:dpi:192:antialias:true:autohint:false:hinting:true; 32
Xft.antialias: true
Xft.autohint: false
Xft.hinting: true
Expand All @@ -27,27 +27,7 @@ st.disable_alpha_correction: 0
Sxiv.background: #000000
Sxiv.foreground: #00C0FF

!! Base16
*.scheme: "Gruvbox dark, hard"
*.author: "Dawid Kurek ([email protected]), morhetz (https://github.com/morhetz/gruvbox)"
*.base00: 1d2021
*.base01: cc241d
*.base02: 98971a
*.base03: d79921
*.base04: 458588
*.base05: b16286
*.base06: 689d6a
*.base07: a89984
*.base08: 928374
*.base09: fb4934
*.base0A: b8bb26
*.base0B: fabd2f
*.base0C: 83a598
*.base0D: d3869b
*.base0E: 8ec07c
*.base0F: ebdbb2

!! Base16 (st)
!! Base16 (st) - gruvbox dark
*.color0: #1d2021
*.color1: #cc241d
*.color2: #98971a
Expand Down
189 changes: 189 additions & 0 deletions .config/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
# _ _ _ ____ ____ ___ _____ _______ __
# / \ | | / \ / ___| _ \|_ _|_ _|_ _\ \ / /
# / _ \ | | / _ \| | | |_) || | | | | | \ V /
# / ___ \| |___ / ___ \ |___| _ < | | | | | | | |
# /_/ \_\_____/_/ \_\____|_| \_\___| |_| |_| |_|
# Config file for Alacritty, the GPU enhanced terminal emulator.


import = ["/usr/share/alacritty/themes/everforest_dark.toml"]

[env]
TERM = "xterm-256color"

[font]
size = 12.0
normal.family = "monospace"
normal.style = "Regular"
italic.family = "monospace"
italic.style = "Italic"
bold.family = "monospace"
bold.style = "Bold"
bold_italic.family = "monospace"
bold_italic.style = "Bold Italic"

[font.glyph_offset]
x = 0
y = 0

[font.offset]
x = 1
y = 1

[[keyboard.bindings]]
action = "Paste"
key = "V"
mods = "Alt"

[[keyboard.bindings]]
action = "Paste"
key = "Paste"

[[keyboard.bindings]]
action = "Copy"
key = "C"
mods = "Alt"

[[keyboard.bindings]]
action = "Copy"
key = "Copy"

[[keyboard.bindings]]
action = "PasteSelection"
key = "Insert"
mods = "Alt"

[[keyboard.bindings]]
action = "ScrollLineUp"
key = "K"
mods = "Alt"

[[keyboard.bindings]]
action = "ScrollLineUp"
key = "Up"
mods = "Alt"

[[keyboard.bindings]]
action = "ScrollLineDown"
key = "J"
mods = "Alt"

[[keyboard.bindings]]
action = "ScrollLineDown"
key = "Down"
mods = "Alt"

[[keyboard.bindings]]
action = "ScrollPageUp"
key = "PageUp"

[[keyboard.bindings]]
action = "ScrollPageDown"
key = "PageDown"

[[keyboard.bindings]]
action = "ScrollToTop"
key = "Home"

[[keyboard.bindings]]
action = "ScrollToBottom"
key = "End"

[[keyboard.bindings]]
action = "ResetFontSize"
key = "Key0"
mods = "Alt"

[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Equals"
mods = "Alt"

[[keyboard.bindings]]
action = "IncreaseFontSize"
key = "Plus"
mods = "Alt"

[[keyboard.bindings]]
action = "DecreaseFontSize"
key = "Minus"
mods = "Alt"

[[keyboard.bindings]]
action = "ClearHistory"
key = "L"
mods = "Alt"

[[keyboard.bindings]]
chars = "\f"
key = "L"
mods = "Alt"

[[keyboard.bindings]]
action = "ClearLogNotice"
key = "L"
mods = "Alt"

[[keyboard.bindings]]
chars = "\f"
key = "L"
mods = "Alt"

[[keyboard.bindings]]
action = "ToggleFullscreen"
key = "F"
mods = "Alt"

[[keyboard.bindings]]
action = "Hide"
key = "H"
mods = "Alt"

[[keyboard.bindings]]
action = "Minimize"
key = "M"
mods = "Alt"

[[keyboard.bindings]]
action = "Quit"
key = "Q"
mods = "Alt"

[[keyboard.bindings]]
action = "Quit"
key = "W"
mods = "Alt"

[mouse]
hide_when_typing = true

[scrolling]
history = 10000
multiplier = 5

[shell]
args = ["--login"]
program = "/bin/zsh"

[window]
opacity = 0.85
decorations = "full"
dynamic_padding = false
startup_mode = "Windowed"
title = "Alacritty"

[window.class]
general = "Alacritty"
instance = "Alacritty"

[window.dimensions]
columns = 0
lines = 0

[window.padding]
x = 2
y = 2

[window.position]
x = 0
y = 0
Loading

0 comments on commit 4608025

Please sign in to comment.