2

I upgraded from 20.04 to 22.04 and now my cursor looks UGLYenter image description here on hover over links. How can I disable that or get back the old Firefox cursor icon? Preferably without using the apt package as explained here: How to install Firefox as a traditional deb package (without snap) in Ubuntu 22.04 (jammy)

grisfer
  • 527
Hakaishin
  • 376
  • The only way would be with the non snap package. You can not change the contents of a snap. Perhaps Firefox support has some hidden config tip. – David Sep 28 '22 at 11:55
  • That is what I was hoping for, a Firefox setting to change this abomination. I checked all the settings but found nothing, but maybe I can replace a file somewhere on my system? – Hakaishin Sep 28 '22 at 12:22
  • A system file does not change what happens in a snap. That is the whole idea snaps are a closed system. – David Sep 28 '22 at 12:23
  • I see, makes sense to some degree, makes user configuration also harder so not a big fan – Hakaishin Sep 28 '22 at 12:36

1 Answers1

6

Check that icon-themes and sound-themes connections are missing:

snap connections firefox

Enable connections:

sudo snap connect firefox:icon-themes gtk-common-themes:icon-themes
sudo snap connect firefox:sound-themes gtk-common-themes:sound-themes

source

similar questions: 1, 2, 3

grisfer
  • 527