https://bugs.kde.org/show_bug.cgi?id=457800
Omar Helali <omar.hel...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |omar.hel...@gmail.com --- Comment #1 from Omar Helali <omar.hel...@gmail.com> --- As workaround, I created a script that toggles the zoom and affected a shortcut to run it, then I map it with input-remapper (from AUR) until the new addition in kwin get fixed https://bugs.kde.org/show_bug.cgi?id=457800 Just update the zoom factor in your settings according to your needs. Here is the toggle script that uses an empty temp file (my tmp is mounted to RAM so it is the fastest process): #!/bin/sh TOGGLE=/tmp/.toggle if [ ! -e $TOGGLE ]; then touch $TOGGLE qdbus org.kde.kglobalaccel /component/kwin invokeShortcut "view_zoom_in" else rm $TOGGLE qdbus org.kde.kglobalaccel /component/kwin invokeShortcut "view_actual_size" fi -- You are receiving this mail because: You are watching all bug changes.