diff --git a/.config/awesome/config.lua b/.config/awesome/config.lua index c321ee2..a00f456 100644 --- a/.config/awesome/config.lua +++ b/.config/awesome/config.lua @@ -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 = { diff --git a/.config/awesome/themes/catppuccin/theme.lua b/.config/awesome/themes/catppuccin/theme.lua index 6b2e897..6240fa3 100644 --- a/.config/awesome/themes/catppuccin/theme.lua +++ b/.config/awesome/themes/catppuccin/theme.lua @@ -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 diff --git a/.config/picom.conf b/.config/picom.conf index 5d7b113..acf0a17 100644 --- a/.config/picom.conf +++ b/.config/picom.conf @@ -2,7 +2,6 @@ # Animations # ################################# - animations: false; animation-stiffness = 125 @@ -16,10 +15,10 @@ animation-for-open-window = "zoom"; #open window animation-for-unmap-window = "zoom"; #minimize window -animation-for-workspace-switch-in = "fly-in"; #the windows in the works pace that is coming in +animation-for-workspace-switch-in = "fly-in"; #the windows in the workspace that is coming in + +animation-for-workspace-switch-out = "fly-in"; #the windows in the workspace that are coming out -animation-for-workspace-switch-out = "fly-in"; #the windows in the work space that are coming out - animation-for-transient-window = "slide-up"; #popup windows ################################# @@ -168,26 +167,27 @@ active-opacity = 0.92; # Specify a list of conditions of windows that should always be considered focused. # focus-exclude = [] -focus-exclude = [ "class_g = 'awesome'", - "class_g = 'Cairo-clock'", - "class_g = 'Rofi'", - "class_g = 'firefox'", - "class_g = 'Firefox'", - "class_g = 'VSCodium'", - "class_g = 'feh'", - "class_g = 'Thunar'", - "class_g = 'slop'", - "class_g = 'origin.exe'", - "class_g = 'Virt-manager'", - "class_g = 'discord'", - "class_g = 'steam_app_0'", - "class_g = 'SlimeRancher2.exe'", - "class_g = 'Steam'", - "class_g = 'origin.exe'", - "class_g = 'Minecraft 1.8.9'", - "class_g = 'VirtualBox Machine'", - "class_g = 'Wine'", - ]; +focus-exclude = [ + "class_g = 'awesome'", + "class_g = 'Cairo-clock'", + "class_g = 'Rofi'", + "class_g = 'firefox'", + "class_g = 'Firefox'", + "class_g = 'VSCodium'", + "class_g = 'feh'", + "class_g = 'Thunar'", + "class_g = 'slop'", + "class_g = 'origin.exe'", + "class_g = 'Virt-manager'", + "class_g = 'discord'", + "class_g = 'steam_app_0'", + "class_g = 'SlimeRancher2.exe'", + "class_g = 'Steam'", + "class_g = 'origin.exe'", + "class_g = 'Minecraft 1.8.9'", + "class_g = 'VirtualBox Machine'", + "class_g = 'Wine'", +]; # Use fixed inactive dim value, instead of adjusting according to window opacity. # inactive-dim-fixed = 1.0 @@ -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" ]; diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi index b1ade8b..c094307 100644 --- a/.config/rofi/config.rasi +++ b/.config/rofi/config.rasi @@ -20,7 +20,7 @@ configuration { * { blue: #f5bde6; border-col: @blue; - font: "FiraCode Nerd Font Propo 12"; + font: "FairiesevkaSans Nerd Font Propo 12"; } window { diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index b75eeda..a7277ab 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -8,23 +8,26 @@ config.enable_tab_bar = false config.default_prog = { "/usr/bin/fish", "-c tmux attach -t main || tmux new -s main" } -config.font = wezterm.font({ - family = "FiraCode Nerd Font", - harfbuzz_features = { - "cv02", - "cv06", - "ss01", - "cv14", - "onum", - "ss04", - "cv18", - "cv31", - "cv30", - "cv25", - "cv26", - "cv32", - "ss06", - "ss07", +config.font = wezterm.font_with_fallback({ + { family = "Fairiesevka Nerd Font" }, + { + family = "FiraCode Nerd Font", + harfbuzz_features = { + "cv02", + "cv06", + "ss01", + "cv14", + "onum", + "ss04", + "cv18", + "cv31", + "cv30", + "cv25", + "cv26", + "cv32", + "ss06", + "ss07", + }, }, }) config.font_size = 11.0