Last active
May 28, 2025 15:56
-
-
Save pythoninthegrass/a30b2edf23595933663fe588afc35434 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[env] | |
TERM = "xterm-256color" | |
[terminal.shell] | |
program = "/usr/bin/bash" | |
args = ["-l", "-c", "zellij"] | |
[window] | |
dimensions.columns = 100 | |
dimensions.lines = 34 | |
padding.x = 0 | |
padding.y = 0 | |
decorations = "None" | |
opacity = 0.98 | |
[keyboard] | |
bindings = [ | |
{ key = "Enter", mods = "Super|Shift", action = "ToggleFullscreen" } | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
general.import = [ | |
"~/.config/alacritty/theme.toml", | |
"~/.config/alacritty/font.toml", | |
"~/.config/alacritty/font-size.toml", | |
"~/.alacritty.toml" | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | |
"logo": { | |
"padding": { | |
"top": 5, | |
"right": 6 | |
} | |
}, | |
"modules": [ | |
"break", | |
{ | |
"type": "custom", | |
"format": "\u001b[90m┌──────────────────────Hardware──────────────────────┐" | |
}, | |
{ | |
"type": "host", | |
"key": " PC", | |
"keyColor": "green" | |
}, | |
{ | |
"type": "cpu", | |
"key": "│ ├", | |
"showPeCoreCount": true, | |
"keyColor": "green" | |
}, | |
{ | |
"type": "gpu", | |
"key": "│ ├", | |
"detectionMethod": "pci", | |
"keyColor": "green" | |
}, | |
{ | |
"type": "display", | |
"key": "│ ├", | |
"keyColor": "green" | |
}, | |
{ | |
"type": "disk", | |
"key": "│ ├", | |
"keyColor": "green" | |
}, | |
{ | |
"type": "memory", | |
"key": "│ ├", | |
"keyColor": "green" | |
}, | |
{ | |
"type": "swap", | |
"key": "└ └ ", | |
"keyColor": "green", | |
}, | |
{ | |
"type": "custom", | |
"format": "\u001b[90m└────────────────────────────────────────────────────┘" | |
}, | |
"break", | |
{ | |
"type": "custom", | |
"format": "\u001b[90m┌──────────────────────Software──────────────────────┐" | |
}, | |
{ | |
"type": "os", | |
"key": " OS", | |
"keyColor": "yellow" | |
}, | |
{ | |
"type": "kernel", | |
"key": "│ ├", | |
"keyColor": "yellow" | |
}, | |
{ | |
"type": "packages", | |
"key": "│ ├", | |
"keyColor": "yellow" | |
}, | |
{ | |
"type": "shell", | |
"key": "└ └", | |
"keyColor": "yellow" | |
}, | |
"break", | |
{ | |
"type": "de", | |
"key": " DE", | |
"keyColor": "blue" | |
}, | |
{ | |
"type": "wm", | |
"key": "│ ├", | |
"keyColor": "blue" | |
}, | |
{ | |
"type": "wmtheme", | |
"key": "│ ├", | |
"keyColor": "blue" | |
}, | |
{ | |
"type": "icons", | |
"key": "│ ├", | |
"keyColor": "blue", | |
}, | |
{ | |
"type": "cursor", | |
"key": "│ ├", | |
"keyColor": "blue", | |
}, | |
{ | |
"type": "terminalfont", | |
"key": "│ ├", | |
"keyColor": "blue", | |
}, | |
{ | |
"type": "terminal", | |
"key": "└ └", | |
"keyColor": "blue" | |
}, | |
{ | |
"type": "custom", | |
"format": "\u001b[90m└────────────────────────────────────────────────────┘" | |
}, | |
"break", | |
{ | |
"type": "custom", | |
"format": "\u001b[90m┌────────────────────Uptime / Age────────────────────┐" | |
}, | |
{ | |
"type": "command", | |
"key": " OS Age ", | |
"keyColor": "magenta", | |
"text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days" | |
}, | |
{ | |
"type": "uptime", | |
"key": " Uptime ", | |
"keyColor": "magenta" | |
}, | |
{ | |
"type": "custom", | |
"format": "\u001b[90m└────────────────────────────────────────────────────┘" | |
}, | |
"break", | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Leave this file in place for omakub to rely on a shared font size for all terminal apps | |
[font] | |
size = 12 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[font] | |
normal = { family = "CaskaydiaMono Nerd Font", style = "Regular" } | |
bold = { family = "CaskaydiaMono Nerd Font", style = "Bold" } | |
italic = { family = "CaskaydiaMono Nerd Font", style = "Italic" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[colors.primary] | |
background = "#24273a" | |
foreground = "#cad3f5" | |
dim_foreground = "#8087a2" | |
bright_foreground = "#cad3f5" | |
[colors.cursor] | |
text = "#24273a" | |
cursor = "#f4dbd6" | |
[colors.vi_mode_cursor] | |
text = "#24273a" | |
cursor = "#b7bdf8" | |
[colors.search.matches] | |
foreground = "#24273a" | |
background = "#a5adcb" | |
[colors.search.focused_match] | |
foreground = "#24273a" | |
background = "#a6da95" | |
[colors.footer_bar] | |
foreground = "#24273a" | |
background = "#a5adcb" | |
[colors.hints.start] | |
foreground = "#24273a" | |
background = "#eed49f" | |
[colors.hints.end] | |
foreground = "#24273a" | |
background = "#a5adcb" | |
[colors.selection] | |
text = "#24273a" | |
background = "#f4dbd6" | |
[colors.normal] | |
black = "#494d64" | |
red = "#ed8796" | |
green = "#a6da95" | |
yellow = "#eed49f" | |
blue = "#8aadf4" | |
magenta = "#f5bde6" | |
cyan = "#8bd5ca" | |
white = "#b8c0e0" | |
[colors.bright] | |
black = "#5b6078" | |
red = "#ed8796" | |
green = "#a6da95" | |
yellow = "#eed49f" | |
blue = "#8aadf4" | |
magenta = "#f5bde6" | |
cyan = "#8bd5ca" | |
white = "#a5adcb" | |
[colors.dim] | |
black = "#494d64" | |
red = "#ed8796" | |
green = "#a6da95" | |
yellow = "#eed49f" | |
blue = "#8aadf4" | |
magenta = "#f5bde6" | |
cyan = "#8bd5ca" | |
white = "#b8c0e0" | |
[[colors.indexed_colors]] | |
index = 16 | |
color = "#f5a97f" | |
[[colors.indexed_colors]] | |
index = 17 | |
color = "#f4dbd6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme "tokyo-night" | |
default_layout "compact" | |
on_force_close "quit" |
# TODO: fastfetch and zellij setup
git clone [email protected]:a30b2edf23595933663fe588afc35434.git alacritty_config
cd alacritty_config
ln -s $(pwd) ~/.config/alacritty
ln -s $(pwd)/.alacritty.toml ~/.alacritty.toml
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hats off to omakub for the heavy lifting 💪