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
Show hidden 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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment