diff --git a/home/programs/graphical/bars/eww/config/css/modules/_window_name.scss b/home/programs/graphical/bars/eww/config/css/modules/_window_name.scss index edf0d3e..0f360da 100644 --- a/home/programs/graphical/bars/eww/config/css/modules/_window_name.scss +++ b/home/programs/graphical/bars/eww/config/css/modules/_window_name.scss @@ -1,4 +1,4 @@ .window_name { - font-family: "JetBrains Mono", "Font Awesome 6 Free", sans-serif; + font-family: "Monaspace Krypton"; font-size: 1.4rem; } diff --git a/home/programs/graphical/bars/eww/config/css/modules/_workspaces.scss b/home/programs/graphical/bars/eww/config/css/modules/_workspaces.scss index e97b513..09c5078 100644 --- a/home/programs/graphical/bars/eww/config/css/modules/_workspaces.scss +++ b/home/programs/graphical/bars/eww/config/css/modules/_workspaces.scss @@ -2,13 +2,14 @@ background-color: $bg1-a; border-radius: 25px; - .icon, .icon label { - font-family: "Material Symbols Outlined"; - font-size: 1.15rem; + .icon, + .icon label { + font-family: "JetBrainsMono Nerd Font", "Material Symbols Outlined"; + font-size: 1.2rem; } .value { - margin: 0 9px; + margin: 0 10px; } .focused { diff --git a/home/programs/graphical/bars/eww/config/eww.scss b/home/programs/graphical/bars/eww/config/eww.scss index 7854a7b..2346051 100644 --- a/home/programs/graphical/bars/eww/config/eww.scss +++ b/home/programs/graphical/bars/eww/config/eww.scss @@ -34,7 +34,7 @@ background-color: $bg-a; color: $fg; - font-family: "JetBrains Mono", "Jost *", sans-serif; + font-family: "JetBrainsMono Nerd Font"; label { font-size: 14px; diff --git a/home/programs/graphical/bars/eww/default.nix b/home/programs/graphical/bars/eww/default.nix index 82d92b4..896f025 100644 --- a/home/programs/graphical/bars/eww/default.nix +++ b/home/programs/graphical/bars/eww/default.nix @@ -25,6 +25,7 @@ in { gawk netcat-openbsd jq + bc util-linux systemd bluez diff --git a/home/programs/graphical/wms/hyprland/config/keybinds.nix b/home/programs/graphical/wms/hyprland/config/keybinds.nix index fa03975..2149596 100644 --- a/home/programs/graphical/wms/hyprland/config/keybinds.nix +++ b/home/programs/graphical/wms/hyprland/config/keybinds.nix @@ -16,7 +16,7 @@ "SUPER, W, killactive," "SUPER, F, togglefloating," "SUPER, Space, fullscreen, 0" - "SUPER, Space_SHIFT, fullscreen, 1" # maximize + "SUPER_SHIFT, Space, fullscreen, 1" # maximize "SUPER_SHIFT, S, layoutmsg, togglesplit" # diff --git a/hosts/voyager/default.nix b/hosts/voyager/default.nix index bf7e3bb..b67c3c4 100644 --- a/hosts/voyager/default.nix +++ b/hosts/voyager/default.nix @@ -62,6 +62,7 @@ ".mozilla" ".mullvad" ".config/chromium" + ".config/spotify" ".config/vesktop" ".local/share/gnupg" ".local/share/zoxide" diff --git a/system/roles/workstation/fonts.nix b/system/roles/workstation/fonts.nix index 600b778..4d2a0b6 100644 --- a/system/roles/workstation/fonts.nix +++ b/system/roles/workstation/fonts.nix @@ -101,5 +101,10 @@ in { }) ]; }; + + environment.systemPackages = with pkgs; [ + # Tool for searching and previewing installed fonts + font-manager + ]; }; }