07-28-2025, 01:48 PM
YES!!!! Thanks a lot, this was infuriating.
For those who come after, quick recipe for Debian:
Adapt the following to the version on your system:
Change TRUE to FALSE on line 1100 of gdk/wayland/gdkscreen-wayland.c with your favorite text editor.
Then recompile:
Install the new packages (be careful if you have more .deb in the same directory...):
Thanks Debian and open source in general. Hopefully future versions will create a user setting for this.
For those who come after, quick recipe for Debian:
Code:
sudo apt-get install build-essential fakeroot dpkg-dev
sudo apt-get source libgtk-3-0
sudo apt-get build-dep libgtk-3-0
Adapt the following to the version on your system:
Code:
dpkg-source -x gtk+3.0_3.24.49-3.dsc
cd gtk+3.0-3.24.49
Change TRUE to FALSE on line 1100 of gdk/wayland/gdkscreen-wayland.c with your favorite text editor.
Then recompile:
Code:
export NO_AT_BRIDGE=1 # workaround for an accessibility bug
dpkg-buildpackage -rfakeroot -b
cd ..
Install the new packages (be careful if you have more .deb in the same directory...):
Code:
sudo dpkg -i *.deb
Thanks Debian and open source in general. Hopefully future versions will create a user setting for this.