Touchegg not working

I decided to configure my touchegg manually with the xml file. I followed the instructions and pasted the code from the github page

From the beginning, the only gestures that worked were the two finger scroll and four finger swipe for new workspaces.
When editing the xml, I noticed that three finger pinches were also written but they wouldn't work. I added the code for snapping windows to side, but the don't work.
I've tried restarting the pc but to no use

I remember you asked about Touche in the other thread.

Since Touche does the same thing as Touchegg, I never installed it.

I wonder if there is any particular advantage to use Touchegg instead of Touche.

Touchegg comes pre-installed on Zorin OS 16.

Yeah, I thought that manual setting would be simple enough. The instructions were quite straightforward and all I had to do was copy and paste a few lines. But now I think it's time I download the flatpak.

1 Like

Yup. That's what I did.
Easy Peasy.
:slight_smile:

Unfortunately, not for me. All I get is a blank screen.

Did you remove flatpak from your system?

sudo apt install flatpak

If it says everything up to date then there is something else going on.

You may as well make sure the os is up to date by performing

sudo apt update

sudo apt upgrade -y

1 Like

Flatpak is up to date so no problems there

Is your software settings set to main server or a local one?

Did you happen to install Touchegg manually following the instruction in the above page?
I wonder if this might interfere with the preinstalled Touchegg comes with Zorin.

Did you also edit xml file?

Perhaps, the easiest solution is to remove and purge Touchegg and then reinstall it.

sudo apt remove --purge touchegg

sudo apt install touchegg

1 Like

Touchegg was already installed. As per the instructions, I used the terminal to create a copy of the xml in the config folder. After I opened the file I noticed that there were a few gestures preconfigured. Among them was 4 finger swipe to toggle workspaces, which worked perfectly, but other preconfigured stuff like three finger pinch in to view applications didn't work

Here is the <application block of the .conf if it helps

** Edit ** It seems that the xml code messes with display because of the <> quotes. Let me know if you need the whole file

touchegg.conf

-->

Super_A S false end
<gesture type="PINCH" fingers="3" direction="OUT">
  <action type="SEND_KEYS">
    <modifiers>Super_A</modifiers>
    <keys>S</keys>
    <repeat>false</repeat>
    <on>end</on>
  </action>
</gesture>

<gesture type="SWIPE" fingers="4" direction="UP">
  <action type="CHANGE_DESKTOP">
    <direction>auto</direction>
    <animate>true</animate>
    <animationPosition>auto</animationPosition>
  </action>
</gesture>

<gesture type="SWIPE" fingers="4" direction="DOWN">
  <action type="CHANGE_DESKTOP">
    <direction>auto</direction>
    <animate>true</animate>
    <animationPosition>auto</animationPosition>
  </action>
</gesture>

<gesture type="TAP" fingers="2">
  <action type="MOUSE_CLICK">
    <button>3</button>
    <on>begin</on>
  </action>
</gesture>

<gesture type="TAP" fingers="3">
  <action type="MOUSE_CLICK">
    <button>2</button>
    <on>begin</on>
  </action>
</gesture>


<gesture type="SWIPE" fingers="3" direction="DOWN">
  <action type="SHOW_DESKTOP">
    <animate>true</animate>
    <color>909090</color>
    <borderColor>FFFFFF</borderColor>
  </action>
</gesture>

<gesture type="SWIPE" fingers="3" direction="LEFT">
  <action type="TILE_WINDOW">
    <direction>left</direction>
    <animate>true</animate>
    <color>3E9FED</color>
    <borderColor>3E9FED</borderColor>
</gesture>

<gesture type="SWIPE" fingers="3" direction="RIGHT">
  <action type="TILE_WINDOW">
    <direction>right</direction>
    <animate>true</animate>
    <color>3E9FED</color>
    <borderColor>3E9FED</borderColor>
  </action>
</gesture>





I don't understand fully but if you mean which server does the Software and updates application use, it is the local one

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.