🧑💻 feat(fonts): Change fonts on everything
This commit is contained in:
parent
79a042f5d7
commit
5c15ca02b0
5 changed files with 51 additions and 44 deletions
|
@ -25,6 +25,10 @@ M.theme = {
|
|||
wallpaper = config_dir .. "themes/catppuccin/buttons.png",
|
||||
pfp = config_dir .. "themes/catppuccin/assets/pfp.jpg",
|
||||
icon_theme = "Papirus",
|
||||
font = {
|
||||
family = "FairiesevkaSans Nerd Font Propo",
|
||||
size = "10",
|
||||
},
|
||||
}
|
||||
|
||||
M.icons = {
|
||||
|
|
|
@ -60,7 +60,7 @@ theme.volume_on = theme_path .. "assets/volume-on.png"
|
|||
theme.volume_off = theme_path .. "assets/volume-off.png"
|
||||
theme.pfp = config.theme.pfp
|
||||
theme.wallpaper = config.theme.wallpaper
|
||||
theme.font = "FiraCode Nerd Font Propo 10"
|
||||
theme.font = config.theme.font.family .. " " .. config.theme.font.size
|
||||
|
||||
theme.titlebar_bg_focus = theme.color.base
|
||||
theme.titlebar_bg = theme.color.base
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
# Animations #
|
||||
#################################
|
||||
|
||||
|
||||
animations: false;
|
||||
animation-stiffness = 125
|
||||
|
||||
|
@ -168,7 +167,8 @@ active-opacity = 0.92;
|
|||
|
||||
# Specify a list of conditions of windows that should always be considered focused.
|
||||
# focus-exclude = []
|
||||
focus-exclude = [ "class_g = 'awesome'",
|
||||
focus-exclude = [
|
||||
"class_g = 'awesome'",
|
||||
"class_g = 'Cairo-clock'",
|
||||
"class_g = 'Rofi'",
|
||||
"class_g = 'firefox'",
|
||||
|
@ -265,7 +265,7 @@ blur-kern = "11x11gaussian";
|
|||
blur-background-exclude = [
|
||||
"window_type = 'dock'",
|
||||
"class_g = 'origin.exe'",
|
||||
"class_g = 'slop'", # Very Important for Screenshot, if set else won't Work
|
||||
"class_g = 'slop'", # Very important for screenshot, if set else won't work
|
||||
"window_type = 'desktop'",
|
||||
"_GTK_FRAME_EXTENTS@:c"
|
||||
];
|
||||
|
|
|
@ -20,7 +20,7 @@ configuration {
|
|||
* {
|
||||
blue: #f5bde6;
|
||||
border-col: @blue;
|
||||
font: "FiraCode Nerd Font Propo 12";
|
||||
font: "FairiesevkaSans Nerd Font Propo 12";
|
||||
}
|
||||
|
||||
window {
|
||||
|
|
|
@ -8,7 +8,9 @@ config.enable_tab_bar = false
|
|||
|
||||
config.default_prog = { "/usr/bin/fish", "-c tmux attach -t main || tmux new -s main" }
|
||||
|
||||
config.font = wezterm.font({
|
||||
config.font = wezterm.font_with_fallback({
|
||||
{ family = "Fairiesevka Nerd Font" },
|
||||
{
|
||||
family = "FiraCode Nerd Font",
|
||||
harfbuzz_features = {
|
||||
"cv02",
|
||||
|
@ -26,6 +28,7 @@ config.font = wezterm.font({
|
|||
"ss06",
|
||||
"ss07",
|
||||
},
|
||||
},
|
||||
})
|
||||
config.font_size = 11.0
|
||||
|
||||
|
|
Loading…
Reference in a new issue