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