Consistent Mouse Cursor adjustment #292
Closed
llewelynrex
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My idea is to add the ability to modify the mouse cursor on Hyprland, GTK and SDDM; perhaps with some sort of script.
I had quite the search to get the mouse cursor consistent, but finally figured out from the ArchWiki for SDDM that I can change the config within /etc/sddm.conf to add the cursor I want.
[Theme]
...
CursorTheme=Bibata-Modern-Classic
CursorSize=24
...
and also from this comment on the sddm issues list, I changed /usr/share/icons/default/index.theme
[Icon Theme]
Inherits=Bibata-Modern-Classic
I also battled to get my mouse cursor to appear consistently in all of the apps. I finally managed by adding the following to my 01-UserDefaults.conf file, since nwg-look didn't appear to do the trick for me.
# Custom Cursor
env = XCURSOR_THEME,Bibata-Modern-Classic
env = XCURSOR_SIZE,24
env = HYPRCURSOR_THEME,Bibata-Modern-Classic
env = HYPRCURSOR_SIZE,24
exec-once = gsettings set org.gnome.desktop.interface cursor-theme Bibata-Modern-Classic
exec-once = gsettings set org.gnome.desktop.interface cursor-size 24
exec-once = hyprctl setcursor Bibata-Modern-Classic 24
I do not know whether this is overkill, but at least it's working. 😅
Beta Was this translation helpful? Give feedback.
All reactions