i3_configuration/i3status/wezterm_htop.lua

21 lines
552 B
Lua
Raw Normal View History

2025-09-22 21:36:45 +02:00
-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
config.enable_tab_bar= false
config.window_background_opacity = 0.8
-- For example, changing the initial geometry for new windows:
config.initial_cols = 150
config.initial_rows = 40
config.color_scheme_dirs = { '~/.config/iTerm2-Color-Schemes' }
-- or, changing the font size and color scheme.
config.font_size = 10
config.color_scheme = 'Ollie'
-- Finally, return the configuration to wezterm:
return config