edit alacritty in Win11

This commit is contained in:
tonizz gamingl
2024-05-08 01:17:34 -07:00
parent aed18dc4dc
commit 750a6bf309
2 changed files with 39 additions and 7 deletions

View File

@@ -4,5 +4,8 @@
- `%APPDATA%\alacritty\alacritty.toml` if `alacritty.toml` does not exist create it
- [Themes Source](https://github.com/alacritty/alacritty-theme)
- Copy all *theme* folder into the *alacritty config location*
- Copy the content of the desired *theme* and paste it at the buttom of `alacritty.toml`
```bash
# or you can run the following one-liner
echo ./themes/{theme}.toml >> ./alacritty.toml
```

View File

@@ -6,15 +6,15 @@ family = "Iosevka Nerd Font"
style = "Bold"
[font.bold_italic]
family = "ZedMono Nerd Font"
family = "Iosevka Nerd Font"
style = "Bold Italic"
[font.italic]
family = "ZedMono Nerd Font"
family = "Iosevka Nerd Font"
style = "Italic"
[font.normal]
family = "ZedMono Nerd Font"
family = "Iosevka Nerd Font"
style = "Regular"
[scrolling]
@@ -26,9 +26,38 @@ startup_mode = "Windowed"
opacity = 0.9
[window.padding]
x = 36
y = 36
x = 40
y = 40
[shell]
program = "wsl"
# Colors (Gotham)
# Default colors
[colors.primary]
background = '#0a0f14'
foreground = '#98d1ce'
# Normal colors
[colors.normal]
black = '#0a0f14'
red = '#c33027'
green = '#26a98b'
yellow = '#edb54b'
blue = '#195465'
magenta = '#4e5165'
cyan = '#33859d'
white = '#98d1ce'
# Bright colors
[colors.bright]
black = '#10151b'
red = '#d26939'
green = '#081f2d'
yellow = '#245361'
blue = '#093748'
magenta = '#888ba5'
cyan = '#599caa'
white = '#d3ebe9'