Solved Change kde default cursor theme

Hi guys,
I installed fbsd 12.1 + KDE + SDDM. The default cursor theme is Breeze and I don't like it, so I set it by system settings=>Cursors on Adwaita theme. The problem is it display the adwaita theme only after login because in that moment starts personal setting so I can see it. Before login is still set on Breeze theme and I don't like it.
To fix it I follow this post, then I logout&login but nothing, so I set by terminal:
Code:
# ln -s /usr/local/share/icons/Adwaita/index.theme /usr/local/share/icons/default/index.theme
bu nothing again.
Ok, no problem. Keep quite. So I follow this post and I put in my .Xdefaults this rows:
Code:
Xcursor.theme: Adwaita
Xcursor.size: 24
then I logout&login and nothing again.
:mad: GRRR I have no ideas no more!!!
How can I fix it so can I see the Adwaita theme on login screen?
 
ln -s /usr/local/share/icons/Adwaita/index.theme /usr/local/share/icons/default/index.theme
Try
Code:
ln -s /usr/local/share/icons/Adwaita/ /usr/local/share/icons/default
The symbolic link has to look like this:
Bash:
lrwxr-xr-x   1 root  wheel   38 Feb 20 22:17 default -> /usr/local/share/icons/Adwaita/
 
Solved! Thanks for all! 👍
In this way:
0) by terminal
Code:
# pkg install deskutils/plasma5-sddm-kcm
1) System settings => cursors => set cursor theme => apply;
2) Login screen (SDDM) => advanced => sync
 
Back
Top