This commit is contained in:
2025-01-13 19:34:21 -05:00
parent 0c7520e472
commit b8b2a59de1
2 changed files with 49 additions and 25 deletions

View File

@@ -0,0 +1,24 @@
# Display the username and hostname
username=true
hostname=true
# Show the system uptime
uptime=true
# Display the OS and kernel version
os=true
kernel=true
# Show the memory usage
memory=true
# Show disk usage
disk=true
# CPU details
cpu=true
# Disable unnecessary features for minimal setup
gpu=false
battery=false
packages=false

View File

@@ -22,38 +22,38 @@ config.window_padding = {
bottom = 0, bottom = 0,
} }
config.color_scheme = "Vague" -- Adjusted colors for similarity to the image
config.colors = { config.colors = {
background = '#18191a', background = '#000000', -- Darker background
foreground = '#abb2bf', foreground = '#c0caf5', -- Light foreground
cursor_bg = '#61afef', cursor_bg = '#c0caf5', -- Cursor color
cursor_fg = '#282c34', cursor_fg = '#0f111a',
cursor_border = '#61afef', cursor_border = '#c0caf5',
ansi = { ansi = {
'#282c34', -- black '#32344a', -- black
'#e06c75', -- red '#f7768e', -- red
'#98c379', -- green '#9ece6a', -- green
'#e5c07b', -- yellow '#e0af68', -- yellow
'#61afef', -- blue '#7aa2f7', -- blue
'#c678dd', -- magenta '#bb9af7', -- magenta
'#56b6c2', -- cyan '#7dcfff', -- cyan
'#ffffff', -- white '#a9b1d6', -- white
}, },
brights = { brights = {
'#5c6370', -- bright black '#444b6a', -- bright black
'#e06c75', -- bright red '#ff7a93', -- bright red
'#98c379', -- bright green '#b9f27c', -- bright green
'#e5c07b', -- bright yellow '#ff9e64', -- bright yellow
'#61afef', -- bright blue '#7da6ff', -- bright blue
'#c678dd', -- bright magenta '#c69ff7', -- bright magenta
'#56b6c2', -- bright cyan '#7dcfff', -- bright cyan
'#ffffff', -- bright white '#c0caf5', -- bright white
}, },
} }
config.font = wezterm.font("Iosevka Slab") -- Change this to your preferred font config.font = wezterm.font("Iosevka") -- Match font as close as possible
config.font_size = 24.0 -- Adjust the font size config.font_size = 22.0 -- Slightly reduced size for a compact view
config.line_height = 1.2 -- Adjust the line height config.line_height = 1.1 -- Adjusted line height
return config return config