diff --git a/home/ooks/opt/desktop/env/hypr-variable.nix b/home/ooks/opt/desktop/env/hypr-variable.nix index e5cdc35..d100ad9 100644 --- a/home/ooks/opt/desktop/env/hypr-variable.nix +++ b/home/ooks/opt/desktop/env/hypr-variable.nix @@ -23,6 +23,7 @@ LIBVA_DRIVER_NAME = "nvidia"; WLR_RENDERER = "vulkan"; # __NV_PRIME_RENDER_OFFLOAD = "1"; + XCURSOR_SIZE = "24"; XDG_CURRENT_DESKTOP = "Hyprland"; XDG_SESSION_DESKTOP = "Hyprland"; diff --git a/home/ooks/opt/desktop/standard/wayland/cursor.nix b/home/ooks/opt/desktop/standard/wayland/cursor.nix new file mode 100644 index 0000000..16c868f --- /dev/null +++ b/home/ooks/opt/desktop/standard/wayland/cursor.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: { + home.pointerCursor = { + gtk.enable = true; + package = pkgs.bibata-cursors; + name = "Bibata-Modern-Ice"; + size = 22; + }; +} diff --git a/home/ooks/opt/desktop/standard/wayland/default.nix b/home/ooks/opt/desktop/standard/wayland/default.nix index a34c07a..49584c6 100644 --- a/home/ooks/opt/desktop/standard/wayland/default.nix +++ b/home/ooks/opt/desktop/standard/wayland/default.nix @@ -6,6 +6,7 @@ ./firefox.nix ./zathura.nix ./gammastep.nix + ./cursor.nix ]; xdg.mimeApps.enable = true; diff --git a/home/ooks/opt/desktop/standard/wayland/mako.nix b/home/ooks/opt/desktop/standard/wayland/mako.nix index a0bb1e2..b7e62fe 100644 --- a/home/ooks/opt/desktop/standard/wayland/mako.nix +++ b/home/ooks/opt/desktop/standard/wayland/mako.nix @@ -14,7 +14,7 @@ in { width = 400; height = 150; borderSize = 2; - defaultTimeout = 12000; + defaultTimeout = 6000; backgroundColor = "#${colors.base00}dd"; borderColor = "#${colors.base03}dd"; textColor = "#${colors.base05}dd";