onward
This commit is contained in:
parent
beac69d28f
commit
75ea947fa8
3 changed files with 26 additions and 52 deletions
|
@ -32,4 +32,15 @@
|
||||||
</edit>
|
</edit>
|
||||||
</match>
|
</match>
|
||||||
-->
|
-->
|
||||||
|
<match target="font">
|
||||||
|
<edit name="hinting" mode="assign">
|
||||||
|
<bool>true</bool>
|
||||||
|
</edit>
|
||||||
|
</match>
|
||||||
|
<match target="font">
|
||||||
|
<edit name="hintstyle" mode="assign">
|
||||||
|
<const>hintslight</const>
|
||||||
|
</edit>
|
||||||
|
</match>
|
||||||
|
<dir>~/.fonts</dir>
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
|
|
|
@ -7,8 +7,9 @@ end
|
||||||
|
|
||||||
local themeShelmanDark = {
|
local themeShelmanDark = {
|
||||||
colors = {
|
colors = {
|
||||||
foreground = "#ded9ce",
|
-- foreground = "#ded9ce",
|
||||||
background = "#171a23",
|
foreground = "#f0f0f0",
|
||||||
|
background = "#141619",
|
||||||
cursor_bg = "#FB8C00",
|
cursor_bg = "#FB8C00",
|
||||||
cursor_border = "#FB8C00",
|
cursor_border = "#FB8C00",
|
||||||
split = "#444444",
|
split = "#444444",
|
||||||
|
@ -21,39 +22,6 @@ local themeShelmanDark = {
|
||||||
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true },
|
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
tab_bar_style = {
|
|
||||||
active_tab_left = wezterm.format({
|
|
||||||
{ Background = { Color = "#171a23" } },
|
|
||||||
{ Foreground = { Color = "#000000" } },
|
|
||||||
{ Text = " " },
|
|
||||||
}),
|
|
||||||
active_tab_right = wezterm.format({
|
|
||||||
{ Background = { Color = "#171a23" } },
|
|
||||||
{ Foreground = { Color = "#000000" } },
|
|
||||||
{ Text = " " },
|
|
||||||
}),
|
|
||||||
inactive_tab_left = wezterm.format({
|
|
||||||
{ Background = { Color = "#000000" } },
|
|
||||||
{ Foreground = { Color = "#171a23" } },
|
|
||||||
{ Text = " " },
|
|
||||||
}),
|
|
||||||
inactive_tab_right = wezterm.format({
|
|
||||||
{ Background = { Color = "#000000" } },
|
|
||||||
{ Foreground = { Color = "#171a23" } },
|
|
||||||
{ Text = "▕" },
|
|
||||||
}),
|
|
||||||
inactive_tab_hover_left = wezterm.format({
|
|
||||||
{ Background = { Color = "#333333" } },
|
|
||||||
{ Foreground = { Color = "#ffffff" } },
|
|
||||||
{ Text = " " },
|
|
||||||
}),
|
|
||||||
inactive_tab_hover_right = wezterm.format({
|
|
||||||
{ Background = { Color = "#333333" } },
|
|
||||||
{ Foreground = { Color = "#ffffff" } },
|
|
||||||
{ Text = " " },
|
|
||||||
}),
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
local themeShelmanLight = {
|
local themeShelmanLight = {
|
||||||
|
@ -102,21 +70,18 @@ return {
|
||||||
warn_about_missing_glyphs = false,
|
warn_about_missing_glyphs = false,
|
||||||
bold_brightens_ansi_colors = false,
|
bold_brightens_ansi_colors = false,
|
||||||
allow_square_glyphs_to_overflow_width = "Always",
|
allow_square_glyphs_to_overflow_width = "Always",
|
||||||
|
font_size = 14,
|
||||||
font_size = 10.5,
|
|
||||||
line_height = 1.0,
|
line_height = 1.0,
|
||||||
cell_width = 0.9,
|
cell_width = 0.9,
|
||||||
|
|
||||||
initial_cols = 128,
|
initial_cols = 128,
|
||||||
initial_rows = 45,
|
initial_rows = 45,
|
||||||
use_resize_increments = false,
|
use_resize_increments = false,
|
||||||
|
-- window_background_opacity = 1.0, --0.93,
|
||||||
window_background_opacity = 0.93,
|
|
||||||
window_padding = {
|
window_padding = {
|
||||||
left = "0",
|
left = "20",
|
||||||
right = "0",
|
right = "20",
|
||||||
top = "0",
|
top = "20",
|
||||||
bottom = "0",
|
bottom = "20",
|
||||||
},
|
},
|
||||||
window_decorations = "RESIZE",
|
window_decorations = "RESIZE",
|
||||||
window_frame = {
|
window_frame = {
|
||||||
|
@ -124,16 +89,14 @@ return {
|
||||||
border_right_width = "2px",
|
border_right_width = "2px",
|
||||||
border_bottom_height = "2px",
|
border_bottom_height = "2px",
|
||||||
border_top_height = "2px",
|
border_top_height = "2px",
|
||||||
border_left_color = "#cccccc",
|
border_left_color = "#999999",
|
||||||
border_right_color = "#cccccc",
|
border_right_color = "#999999",
|
||||||
border_bottom_color = "#cccccc",
|
border_bottom_color = "#999999",
|
||||||
border_top_color = "#cccccc",
|
border_top_color = "#999999",
|
||||||
},
|
},
|
||||||
|
|
||||||
default_cursor_style = "SteadyBlock",
|
default_cursor_style = "SteadyBlock",
|
||||||
cursor_thickness = "3px",
|
cursor_thickness = "3px",
|
||||||
cursor_blink_rate = 300,
|
cursor_blink_rate = 300,
|
||||||
|
|
||||||
enable_wayland = true,
|
enable_wayland = true,
|
||||||
enable_tab_bar = false,
|
enable_tab_bar = false,
|
||||||
tab_bar_at_bottom = true,
|
tab_bar_at_bottom = true,
|
||||||
|
@ -145,7 +108,6 @@ return {
|
||||||
status_update_interval = 100,
|
status_update_interval = 100,
|
||||||
audible_bell = "Disabled",
|
audible_bell = "Disabled",
|
||||||
term = "wezterm",
|
term = "wezterm",
|
||||||
|
|
||||||
disable_default_key_bindings = true,
|
disable_default_key_bindings = true,
|
||||||
keys = {
|
keys = {
|
||||||
{ key = "c", mods = "ALT|SHIFT", action = wezterm.action({ CopyTo = "ClipboardAndPrimarySelection" }) },
|
{ key = "c", mods = "ALT|SHIFT", action = wezterm.action({ CopyTo = "ClipboardAndPrimarySelection" }) },
|
||||||
|
|
|
@ -7,4 +7,5 @@ TryExec=/usr/bin/wezterm
|
||||||
Icon=org.wezfurlong.wezterm
|
Icon=org.wezfurlong.wezterm
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=System;TerminalEmulator;
|
Categories=System;TerminalEmulator;
|
||||||
Exec=/usr/bin/wezterm --config 'default_prog={"ssh", "-q", "dln-dev", "--", "tmux", "-u", "new-session", "-As1", "-t0"}' --config font_size=9 --config=window_background_opacity=0.4 start --class=wezterm-dln-dev-secondary
|
#Exec=/usr/bin/wezterm --config 'default_prog={"ssh", "-q", "dln-dev", "--", "tmux", "-u", "new-session", "-As1", "-t0"}' --config font_size=11 --config=window_background_opacity=0.4 start --class=wezterm-dln-dev-secondary
|
||||||
|
Exec=/usr/bin/wezterm --config 'default_prog={"ssh", "-q", "dln-dev", "--", "tmux", "-u", "new-session", "-As1", "-t0"}' --config font_size=11 start --class=wezterm-dln-dev-secondary
|
||||||
|
|
Loading…
Add table
Reference in a new issue