We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if it's a bug, but in Firefox and Qalculate! the cursor is not customized.
The cursor is fine in wireshark.
I'm using the follow code.
{ catppuccin = { cursors.enable = true; gtk = { enable = true; # gnomeShellTheme = true; icon.enable = true; }; kvantum.enable = true; }; gtk = { enable = true; gtk2.extraConfig = "gtk-application-prefer-dark-theme = true"; gtk3.extraConfig.gtk-application-prefer-dark-theme = true; }; qt = { enable = true; platformTheme.name = "kvantum"; style.name = "kvantum"; }; }
The text was updated successfully, but these errors were encountered:
Hi. Thank you for the great project! Exactly the same story, here is my configuration:
system:
services.xserver.desktopManager.gnome.enable = true;
home-manager:
catppuccin.flavor = "frappe"; catppuccin.enable = true; catppuccin.gtk.enable = true; gtk.enable = true; home.pointerCursor = { name = "BreezeX-RosePineDawn-Linux"; package = pkgs.rose-pine-cursor; size = 24; x11.enable = true; gtk.enable = true; };
When I log into the system, the cursor in GTK applications has the wrong size and theme:
> gsettings get org.gnome.desktop.interface cursor-theme 'default'
If I do a rebuild after logging in, the cursor and size become correct (until logout or sleep). I could also fix this with the following command:
> gsettings set org.gnome.desktop.interface cursor-theme 'BreezeX-RosePineDawn-Linux' > gsettings get org.gnome.desktop.interface cursor-theme 'BreezeX-RosePineDawn-Linux'
I thought I could solve the problem by simply adding this command to exec-once (hyprland):
exec-once
exec-once = "gsettings set org.gnome.desktop.interface cursor-theme 'BreezeX-RosePineDawn-Linux'"
But that didn't help. For some reason, a delay is necessary for it to work:
exec-once = "sleep 5 && gsettings set org.gnome.desktop.interface cursor-theme 'BreezeX-RosePineDawn-Linux'"
Also, this doesn't solve the problem of the cursor resetting after waking from sleep.
Sorry, something went wrong.
No branches or pull requests
Not sure if it's a bug, but in Firefox and Qalculate! the cursor is not customized.
The cursor is fine in wireshark.
I'm using the follow code.
The text was updated successfully, but these errors were encountered: