1
0
Fork 0

wezterm: rearrange stuff

This commit is contained in:
Von Random 2023-10-16 12:26:39 +03:00
parent 652846869c
commit b0208ebbd7
2 changed files with 12 additions and 11 deletions

View file

@ -34,7 +34,6 @@ theme.colors = {
} }
} }
} }
theme.colors.tab_bar.active_tab_hover = theme.colors.tab_bar.active_tab
theme.colors.tab_bar.inactive_tab_hover = theme.colors.tab_bar.inactive_tab theme.colors.tab_bar.inactive_tab_hover = theme.colors.tab_bar.inactive_tab
theme.window_frame = { theme.window_frame = {
active_titlebar_bg = tab_bg, active_titlebar_bg = tab_bg,

View file

@ -20,16 +20,24 @@ cfg.font_size = fn.set_by_os{
} }
-- visuals -- visuals
local tab_fg = '#657b83'
local tab_bg = '#eee8d5'
local tab_bg_active = '#fdf6e3'
cfg.window_decorations = 'INTEGRATED_BUTTONS|RESIZE|MACOS_FORCE_ENABLE_SHADOW' cfg.window_decorations = 'INTEGRATED_BUTTONS|RESIZE|MACOS_FORCE_ENABLE_SHADOW'
cfg.xcursor_theme = 'Adwaita' cfg.xcursor_theme = 'Adwaita'
cfg.use_fancy_tab_bar = true cfg.use_fancy_tab_bar = true
cfg.hide_tab_bar_if_only_one_tab = false cfg.hide_tab_bar_if_only_one_tab = false
cfg.show_new_tab_button_in_tab_bar = false cfg.show_new_tab_button_in_tab_bar = false
cfg.tab_max_width = 128 cfg.tab_max_width = 128
cfg.window_padding = {
left = '5pt',
right = 0,
top = '2pt',
bottom = 0
}
-- colors
local tab_fg = '#657b83'
local tab_bg = '#eee8d5'
local tab_bg_active = '#fdf6e3'
cfg.color_scheme = 'Solarized Light (Gogh)' cfg.color_scheme = 'Solarized Light (Gogh)'
cfg.colors = { cfg.colors = {
cursor_bg = '#cb4b16', cursor_bg = '#cb4b16',
@ -51,12 +59,6 @@ cfg.window_frame = {
active_titlebar_bg = tab_bg, active_titlebar_bg = tab_bg,
inactive_titlebar_bg = tab_bg inactive_titlebar_bg = tab_bg
} }
cfg.window_padding = {
left = '5pt',
right = 0,
top = '2pt',
bottom = 0
}
-- callbacks -- callbacks
require('overrides') require('overrides')