Files
dotfiles/.wezterm.lua
Thierry Schork 8cfca23e82 - adapted wezterm, oh-my-zsh and power10k themes.
- Added power10k config to the repo
- restarting swayosd-server and hyprpaper on lid open
2026-02-11 19:48:37 +01:00

28 lines
687 B
Lua

-- Pull in the wezterm API
local wezterm = require 'wezterm'
-- This will hold the configuration.
local config = wezterm.config_builder()
-- This is where you actually apply your config choices.
-- For example, changing the initial geometry for new windows:
config.initial_cols = 180
config.initial_rows = 28
-- or, changing the font size and color scheme.
config.font_size = 11
--config.dpi=180
--config.color_scheme = 'AdventureTime'
config.color_scheme = "tokyonight_moon"
config.color_scheme = "Aco (Gogh)"
config.color_scheme = "adventure"
config.window_background_opacity = 0.8
config.enable_scroll_bar = true
-- Finally, return the configuration to wezterm:
return config