nugget changes
This commit is contained in:
parent
720dad9c35
commit
11ebe645d3
6 changed files with 69 additions and 47 deletions
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version='1.0' encoding='UTF-8'?>
|
||||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
<alias>
|
<alias>
|
||||||
<family>serif</family>
|
<family>serif</family>
|
||||||
|
@ -19,4 +19,15 @@
|
||||||
<family>Noto Color Emoji</family>
|
<family>Noto Color Emoji</family>
|
||||||
</prefer>
|
</prefer>
|
||||||
</alias>
|
</alias>
|
||||||
|
<dir>~/.fonts</dir>
|
||||||
|
<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>
|
||||||
</fontconfig>
|
</fontconfig>
|
||||||
|
|
|
@ -54,12 +54,13 @@ local themeShelmanLight = {
|
||||||
cursor_bg = "#FB8C00",
|
cursor_bg = "#FB8C00",
|
||||||
cursor_border = "#FB8C00",
|
cursor_border = "#FB8C00",
|
||||||
split = "#444444",
|
split = "#444444",
|
||||||
ansi = { "#000000", "#ff605a", "#b1e869", "#ead89c", "#5da9f6", "#e86aff", "#82fff6", "#ded9ce" },
|
ansi = { "#212121", "#b7141e", "#457b23", "#f5971d", "#134eb2", "#550087", "#0e707c", "#eeeeee" },
|
||||||
brights = { "#313131", "#f58b7f", "#dcf88f", "#eee5b2", "#a5c7ff", "#ddaaff", "#b6fff9", "#fefffe" },
|
brights = { "#424242", "#e83a3f", "#7aba39", "#fee92e", "#53a4f3", "#a94dbb", "#26bad1", "#d8d8d8" },
|
||||||
|
|
||||||
tab_bar = {
|
tab_bar = {
|
||||||
background = "#444444",
|
background = "#556677",
|
||||||
active_tab = { bg_color = "#f7f7f7", fg_color = "#000000", intensity = "Normal", },
|
active_tab = { bg_color = "#f7f7f7", fg_color = "#000000", intensity = "Normal", },
|
||||||
inactive_tab = { bg_color = "#777777", fg_color = "#000000", intensity = "Half", },
|
inactive_tab = { bg_color = "#778899", fg_color = "#000000", intensity = "Half", },
|
||||||
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
inactive_tab_hover = { bg_color = "#333333", fg_color = "#909090", italic = true, }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -67,49 +68,55 @@ local themeShelmanLight = {
|
||||||
tab_bar_style = {
|
tab_bar_style = {
|
||||||
active_tab_left = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
active_tab_left = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
||||||
active_tab_right = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
active_tab_right = wezterm.format({ {Background={Color="#f7f7f7"}}, {Foreground={Color="#000000"}}, {Text=" "} }),
|
||||||
inactive_tab_left = wezterm.format({ {Background={Color="#777777"}}, {Foreground={Color="#f7f7f7"}}, {Text=" "} }),
|
inactive_tab_left = wezterm.format({ {Background={Color="#778899"}}, {Foreground={Color="#f7f7f7"}}, {Text=" "} }),
|
||||||
inactive_tab_right = wezterm.format({ {Background={Color="#777777"}}, {Foreground={Color="#333333"}}, {Text="▕"} }),
|
inactive_tab_right = wezterm.format({ {Background={Color="#778899"}}, {Foreground={Color="#333333"}}, {Text="▕"} }),
|
||||||
inactive_tab_hover_left = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {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=" "} }),
|
inactive_tab_hover_right = wezterm.format({ {Background={Color="#333333"}}, {Foreground={Color="#ffffff"}}, {Text=" "} }),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
local theme = themeShelmanDark;
|
local theme = themeShelmanLight;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
colors = theme.colors,
|
colors = theme.colors,
|
||||||
tab_bar_style = theme.tab_bar_style,
|
tab_bar_style = theme.tab_bar_style,
|
||||||
-- automatically_reload_config = false,
|
-- automatically_reload_config = false,
|
||||||
font = font_with_fallback("Iosevka Term SS09 Light"),
|
font = font_with_fallback("Iosevka Term SS09", {weight="Regular"}),
|
||||||
|
-- font = wezterm.font("Iosevka Term SS09", {weight="Regular"}),
|
||||||
font_rules = {
|
font_rules = {
|
||||||
{
|
{
|
||||||
italic = false,
|
italic = false,
|
||||||
intensity = "Half",
|
intensity = "Half",
|
||||||
font = font_with_fallback("Iosevka Term SS09 Thin")
|
font = font_with_fallback("Iosevka Term SS09", {weight="Thin"})
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Normal",
|
intensity = "Normal",
|
||||||
font = font_with_fallback("Iosevka Term SS09 Light", {italic=true})
|
font = font_with_fallback("Iosevka Term SS09", {weight="Light", italic=true})
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
italic = true,
|
italic = true,
|
||||||
intensity = "Bold",
|
intensity = "Bold",
|
||||||
font = font_with_fallback("Iosevka Term Curly Slab XLt", {italic=true})
|
font = font_with_fallback("Iosevka Term Curly Slab", {weight="Light", italic=true})
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
intensity = "Bold",
|
intensity = "Bold",
|
||||||
font = font_with_fallback("Iosevka Term SS09 Semibold")
|
font = font_with_fallback("Iosevka Term SS09", {weight="DemiBold"})
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
freetype_load_target = "HorizontalLcd",
|
-- freetype_load_target = "HorizontalLcd",
|
||||||
|
freetype_load_target = "Light",
|
||||||
|
freetype_interpreter_version = 40,
|
||||||
|
freetype_load_flags = "FORCE_AUTOHINT",
|
||||||
|
|
||||||
|
bold_brightens_ansi_colors = false,
|
||||||
|
|
||||||
font_size = 12.0,
|
font_size = 12.0,
|
||||||
line_height = 1.0,
|
line_height = 1.125,
|
||||||
|
|
||||||
initial_cols = 120,
|
-- initial_cols = 120,
|
||||||
initial_rows = 40,
|
-- initial_rows = 40,
|
||||||
window_padding = {
|
window_padding = {
|
||||||
left = 0,
|
left = 0,
|
||||||
right = 0,
|
right = 0,
|
||||||
|
@ -126,6 +133,8 @@ return {
|
||||||
check_for_updates = false,
|
check_for_updates = false,
|
||||||
status_update_interval = 100,
|
status_update_interval = 100,
|
||||||
|
|
||||||
|
term = "wezterm",
|
||||||
|
|
||||||
launch_menu = {
|
launch_menu = {
|
||||||
{
|
{
|
||||||
label = "dln-dev",
|
label = "dln-dev",
|
||||||
|
@ -160,12 +169,12 @@ return {
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
ssh_domains = {
|
-- ssh_domains = {
|
||||||
{
|
-- {
|
||||||
name = "dln-dev",
|
-- name = "dln-dev",
|
||||||
remote_address = "dln-dev",
|
-- remote_address = "dln-dev",
|
||||||
username = "dln",
|
-- username = "dln",
|
||||||
}
|
-- }
|
||||||
},
|
-- },
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Version=1.0
|
Version=1.0
|
||||||
Name=plex
|
Name=plex
|
||||||
StartupWMClass=plex
|
StartupWMClass=plex.aarn.shelman.io
|
||||||
Exec=/usr/bin/google-chrome-stable --profile-directory='Profile 2' --app=https://plex.aarn.shelman.io
|
Exec=/usr/bin/google-chrome-stable --profile-directory='Profile 2' --app-id=llnnnpamphjdahhjbplmgfangbkgfonf
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Icon=google-chrome
|
Icon=google-chrome
|
||||||
Type=Application
|
Type=Application
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=wezterm-dln-dev
|
Name=wezterm-dln-dev
|
||||||
GenericName=wezterm-dln-dev
|
GenericName=wezterm-dln-dev
|
||||||
StartupWMClass=wezterm-dln-dev
|
StartupWMClass=org.wezfurlong.wezterm
|
||||||
Type=Application
|
Type=Application
|
||||||
TryExec=/usr/bin/wezterm
|
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 connect dln-dev
|
||||||
Exec=/usr/bin/wezterm --config 'default_prog={"autossh", "-M0", "-q", "dln-dev"}' start --class=wezterm-dln-dev
|
Exec=/usr/bin/wezterm --config 'default_prog={"autossh", "-M0", "-q", "dln-dev"}' start --class=wezterm-dln-dev
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Version=1.0
|
Version=1.0
|
||||||
Name=YouTube Music
|
Name=YouTube Music
|
||||||
StartupWMClass=youtube-music
|
StartupWMClass=music.youtube.com
|
||||||
Exec=/usr/bin/google-chrome-stable --profile-directory='Profile 2' --app=https://music.youtube.com
|
Exec=/usr/bin/google-chrome-stable --profile-directory='Profile 2' --app=https://music.youtube.com
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Icon=google-chrome
|
Icon=google-chrome
|
||||||
|
|
|
@ -16,6 +16,7 @@ ForwardAgent yes
|
||||||
ForwardX11 yes
|
ForwardX11 yes
|
||||||
ExitOnForwardFailure yes
|
ExitOnForwardFailure yes
|
||||||
Compression yes
|
Compression yes
|
||||||
|
LocalForward 127.0.0.1:8000 127.0.0.1:8000
|
||||||
LocalForward 127.0.0.1:8080 127.0.0.1:8080
|
LocalForward 127.0.0.1:8080 127.0.0.1:8080
|
||||||
LocalForward 127.0.0.1:8200 127.0.0.1:8200
|
LocalForward 127.0.0.1:8200 127.0.0.1:8200
|
||||||
LocalForward 127.0.0.1:8250 127.0.0.1:8250
|
LocalForward 127.0.0.1:8250 127.0.0.1:8250
|
||||||
|
|
Loading…
Reference in a new issue