3 fingers swipe change workspace in Ubuntu 14.04Multitouch on Dell Inspiron 7537How to move/resize window by tapping/dragging on the touchpad on 14.04?Multitouch gesture in Ubuntu 14.04Multi-Finger Gestures in 14.04How to configure my touchpad to switch between workspaces with a swipeActivate pinch to zoom in UbuntuTouchpad freezes when I have two fingers on itSwipe to workspaces Mac osx likeDisable two finger right clickHow to change Ubuntu with Wayland's 4 finger swipe gesture to a 3 finger swipe gesture?
Converting 3x7 to a 1x7. Is it possible with only existing parts?
How to address players struggling with simple controls?
SQL Server has encountered occurences of I/O requests taking longer than 15 seconds
High-end PC graphics circa 1990?
Does knowing the surface area of all faces uniquely determine a tetrahedron?
Why are almost all the people in this orchestra recording wearing headphones with one ear on and one ear off?
Do my partner and son need an SSN to be dependents on my taxes?
On George Box, Galit Shmueli and the scientific method?
How to write a nice frame challenge?
How did Avada Kedavra get its name?
How "fast" does astronomical events happen?
First occurrence in the Sixers sequence
Why do you need to heat the pan before heating the olive oil?
How do credit card companies know what type of business I'm paying for?
How can the US president give an order to a civilian?
Catching a robber on one line
The instant an accelerating object has zero speed, is it speeding up, slowing down, or neither?
Lead the way to this Literary Knight to its final “DESTINATION”
How can I detect if I'm in a subshell?
What are the mechanical differences between Adapt and Monstrosity?
How can Caller ID be faked?
What is the color associated with lukewarm?
Numerical second order differentiation
...and then she held the gun
3 fingers swipe change workspace in Ubuntu 14.04
Multitouch on Dell Inspiron 7537How to move/resize window by tapping/dragging on the touchpad on 14.04?Multitouch gesture in Ubuntu 14.04Multi-Finger Gestures in 14.04How to configure my touchpad to switch between workspaces with a swipeActivate pinch to zoom in UbuntuTouchpad freezes when I have two fingers on itSwipe to workspaces Mac osx likeDisable two finger right clickHow to change Ubuntu with Wayland's 4 finger swipe gesture to a 3 finger swipe gesture?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I just bought an Dell XPS 13 and for my work I have a Macbook.
I want to use the touchpad for changing workspaces. I have found some questions but all the answers provided does not work on Ubuntu 14.04.
Is there someone that got the 3 finger swipe working for switching workspaces?
14.04 touchpad multi-touch
add a comment |
I just bought an Dell XPS 13 and for my work I have a Macbook.
I want to use the touchpad for changing workspaces. I have found some questions but all the answers provided does not work on Ubuntu 14.04.
Is there someone that got the 3 finger swipe working for switching workspaces?
14.04 touchpad multi-touch
@Daniel Why do you claim that obsolete 14.10 and non-LTS 15.04 are more stable that 14.04 LTS?
– Pilot6
Jul 21 '15 at 7:33
1
Wrong button @Pilot6
– Daniel
Jul 21 '15 at 17:08
add a comment |
I just bought an Dell XPS 13 and for my work I have a Macbook.
I want to use the touchpad for changing workspaces. I have found some questions but all the answers provided does not work on Ubuntu 14.04.
Is there someone that got the 3 finger swipe working for switching workspaces?
14.04 touchpad multi-touch
I just bought an Dell XPS 13 and for my work I have a Macbook.
I want to use the touchpad for changing workspaces. I have found some questions but all the answers provided does not work on Ubuntu 14.04.
Is there someone that got the 3 finger swipe working for switching workspaces?
14.04 touchpad multi-touch
14.04 touchpad multi-touch
edited Aug 26 '15 at 19:52
hg8
10.1k125793
10.1k125793
asked Jul 20 '15 at 21:11
user49109user49109
2612
2612
@Daniel Why do you claim that obsolete 14.10 and non-LTS 15.04 are more stable that 14.04 LTS?
– Pilot6
Jul 21 '15 at 7:33
1
Wrong button @Pilot6
– Daniel
Jul 21 '15 at 17:08
add a comment |
@Daniel Why do you claim that obsolete 14.10 and non-LTS 15.04 are more stable that 14.04 LTS?
– Pilot6
Jul 21 '15 at 7:33
1
Wrong button @Pilot6
– Daniel
Jul 21 '15 at 17:08
@Daniel Why do you claim that obsolete 14.10 and non-LTS 15.04 are more stable that 14.04 LTS?
– Pilot6
Jul 21 '15 at 7:33
@Daniel Why do you claim that obsolete 14.10 and non-LTS 15.04 are more stable that 14.04 LTS?
– Pilot6
Jul 21 '15 at 7:33
1
1
Wrong button @Pilot6
– Daniel
Jul 21 '15 at 17:08
Wrong button @Pilot6
– Daniel
Jul 21 '15 at 17:08
add a comment |
1 Answer
1
active
oldest
votes
I'm running 15.04 and I got the three finger swipe working with xSwipe. I did it by following this tutorial:
Ubuntu 13.10, Mint 16, and Up
First download the following dependencies.
sudo apt-get install build-essential libevdev-dev autoconf automake libmtdev-dev xorg-dev xutils-dev libtool
Now, we need to remove the old driver so the new one will overwrite it.
sudo apt-get remove xserver-xorg-input-synaptics
Then, clone the source and build the new driver!
git clone https://github.com/felipejfc/xserver-xorg-input-synaptics.git
cd xserver-xorg-input-synaptics
./autogen.sh
./configure --exec_prefix=/usr
make
sudo make install
When this completes, reboot and make sure your pointer works.
Setting up xSwipe
First install the dependencies.
sudo apt-get install libx11-guitest-perl
Then enable SHMConfig to allow for handling of the gestures.
mkdir /etc/X11/xorg.conf.d/
sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf
Fill the file with the following, and save it!
Section "InputClass"
Identifier "evdev touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "on"
Option "Protocol" "event"
Option "SHMConfig" "on"
EndSection
Now clone xSwipe to a location of your choosing.
git clone https://github.com/iberianpig/xSwipe.git
And change the eventkey.cfg file to your liking. EDIT: It seems in both 13.10 and 14.04 versions of Ubuntu (and any version of Cinnamon), the keys set in the "other" category are the ones that are signaled on key swipes. Ignore the ubuntu and gnome sections for unity and cinnnamon.
cd xSwipe/
nano eventkey.cfg
Now test by running:
perl xSwipe.pl
Try to swipe with different gestrues and check the terminal to see if they are working. If they are, you may now add the script to your start up programs depending on your environment. After it is added, reboot and you should have working multitouch gestures!
Update: This seems to take about an hour out of my battery life. To get around this, I change the sensitivity with the parameter -m 30.
perl xSwipe.pl -m 30
All credits go to Matthew Iannucci, find this tutorial and comments here: Whole tutorial
If this does not work for you, you can try the tutorial of iberianpig, who made xSwipe. -> Tutorial
If you want to configure the gestures look here: -> https://github.com/iberianpig/xSwipe/wiki/Customize-eventKey.cfg
Here is my eventKey.cfg already configured for the 3 finger workspace swipe: http://pastebin.com/f1E1L26V
Unfortunately the newxserver-xorg
from felipejfc does not seem to work properly for me.xserver-xorg
is broken after a reboot.
– hg8
Sep 2 '15 at 7:14
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f650711%2f3-fingers-swipe-change-workspace-in-ubuntu-14-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm running 15.04 and I got the three finger swipe working with xSwipe. I did it by following this tutorial:
Ubuntu 13.10, Mint 16, and Up
First download the following dependencies.
sudo apt-get install build-essential libevdev-dev autoconf automake libmtdev-dev xorg-dev xutils-dev libtool
Now, we need to remove the old driver so the new one will overwrite it.
sudo apt-get remove xserver-xorg-input-synaptics
Then, clone the source and build the new driver!
git clone https://github.com/felipejfc/xserver-xorg-input-synaptics.git
cd xserver-xorg-input-synaptics
./autogen.sh
./configure --exec_prefix=/usr
make
sudo make install
When this completes, reboot and make sure your pointer works.
Setting up xSwipe
First install the dependencies.
sudo apt-get install libx11-guitest-perl
Then enable SHMConfig to allow for handling of the gestures.
mkdir /etc/X11/xorg.conf.d/
sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf
Fill the file with the following, and save it!
Section "InputClass"
Identifier "evdev touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "on"
Option "Protocol" "event"
Option "SHMConfig" "on"
EndSection
Now clone xSwipe to a location of your choosing.
git clone https://github.com/iberianpig/xSwipe.git
And change the eventkey.cfg file to your liking. EDIT: It seems in both 13.10 and 14.04 versions of Ubuntu (and any version of Cinnamon), the keys set in the "other" category are the ones that are signaled on key swipes. Ignore the ubuntu and gnome sections for unity and cinnnamon.
cd xSwipe/
nano eventkey.cfg
Now test by running:
perl xSwipe.pl
Try to swipe with different gestrues and check the terminal to see if they are working. If they are, you may now add the script to your start up programs depending on your environment. After it is added, reboot and you should have working multitouch gestures!
Update: This seems to take about an hour out of my battery life. To get around this, I change the sensitivity with the parameter -m 30.
perl xSwipe.pl -m 30
All credits go to Matthew Iannucci, find this tutorial and comments here: Whole tutorial
If this does not work for you, you can try the tutorial of iberianpig, who made xSwipe. -> Tutorial
If you want to configure the gestures look here: -> https://github.com/iberianpig/xSwipe/wiki/Customize-eventKey.cfg
Here is my eventKey.cfg already configured for the 3 finger workspace swipe: http://pastebin.com/f1E1L26V
Unfortunately the newxserver-xorg
from felipejfc does not seem to work properly for me.xserver-xorg
is broken after a reboot.
– hg8
Sep 2 '15 at 7:14
add a comment |
I'm running 15.04 and I got the three finger swipe working with xSwipe. I did it by following this tutorial:
Ubuntu 13.10, Mint 16, and Up
First download the following dependencies.
sudo apt-get install build-essential libevdev-dev autoconf automake libmtdev-dev xorg-dev xutils-dev libtool
Now, we need to remove the old driver so the new one will overwrite it.
sudo apt-get remove xserver-xorg-input-synaptics
Then, clone the source and build the new driver!
git clone https://github.com/felipejfc/xserver-xorg-input-synaptics.git
cd xserver-xorg-input-synaptics
./autogen.sh
./configure --exec_prefix=/usr
make
sudo make install
When this completes, reboot and make sure your pointer works.
Setting up xSwipe
First install the dependencies.
sudo apt-get install libx11-guitest-perl
Then enable SHMConfig to allow for handling of the gestures.
mkdir /etc/X11/xorg.conf.d/
sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf
Fill the file with the following, and save it!
Section "InputClass"
Identifier "evdev touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "on"
Option "Protocol" "event"
Option "SHMConfig" "on"
EndSection
Now clone xSwipe to a location of your choosing.
git clone https://github.com/iberianpig/xSwipe.git
And change the eventkey.cfg file to your liking. EDIT: It seems in both 13.10 and 14.04 versions of Ubuntu (and any version of Cinnamon), the keys set in the "other" category are the ones that are signaled on key swipes. Ignore the ubuntu and gnome sections for unity and cinnnamon.
cd xSwipe/
nano eventkey.cfg
Now test by running:
perl xSwipe.pl
Try to swipe with different gestrues and check the terminal to see if they are working. If they are, you may now add the script to your start up programs depending on your environment. After it is added, reboot and you should have working multitouch gestures!
Update: This seems to take about an hour out of my battery life. To get around this, I change the sensitivity with the parameter -m 30.
perl xSwipe.pl -m 30
All credits go to Matthew Iannucci, find this tutorial and comments here: Whole tutorial
If this does not work for you, you can try the tutorial of iberianpig, who made xSwipe. -> Tutorial
If you want to configure the gestures look here: -> https://github.com/iberianpig/xSwipe/wiki/Customize-eventKey.cfg
Here is my eventKey.cfg already configured for the 3 finger workspace swipe: http://pastebin.com/f1E1L26V
Unfortunately the newxserver-xorg
from felipejfc does not seem to work properly for me.xserver-xorg
is broken after a reboot.
– hg8
Sep 2 '15 at 7:14
add a comment |
I'm running 15.04 and I got the three finger swipe working with xSwipe. I did it by following this tutorial:
Ubuntu 13.10, Mint 16, and Up
First download the following dependencies.
sudo apt-get install build-essential libevdev-dev autoconf automake libmtdev-dev xorg-dev xutils-dev libtool
Now, we need to remove the old driver so the new one will overwrite it.
sudo apt-get remove xserver-xorg-input-synaptics
Then, clone the source and build the new driver!
git clone https://github.com/felipejfc/xserver-xorg-input-synaptics.git
cd xserver-xorg-input-synaptics
./autogen.sh
./configure --exec_prefix=/usr
make
sudo make install
When this completes, reboot and make sure your pointer works.
Setting up xSwipe
First install the dependencies.
sudo apt-get install libx11-guitest-perl
Then enable SHMConfig to allow for handling of the gestures.
mkdir /etc/X11/xorg.conf.d/
sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf
Fill the file with the following, and save it!
Section "InputClass"
Identifier "evdev touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "on"
Option "Protocol" "event"
Option "SHMConfig" "on"
EndSection
Now clone xSwipe to a location of your choosing.
git clone https://github.com/iberianpig/xSwipe.git
And change the eventkey.cfg file to your liking. EDIT: It seems in both 13.10 and 14.04 versions of Ubuntu (and any version of Cinnamon), the keys set in the "other" category are the ones that are signaled on key swipes. Ignore the ubuntu and gnome sections for unity and cinnnamon.
cd xSwipe/
nano eventkey.cfg
Now test by running:
perl xSwipe.pl
Try to swipe with different gestrues and check the terminal to see if they are working. If they are, you may now add the script to your start up programs depending on your environment. After it is added, reboot and you should have working multitouch gestures!
Update: This seems to take about an hour out of my battery life. To get around this, I change the sensitivity with the parameter -m 30.
perl xSwipe.pl -m 30
All credits go to Matthew Iannucci, find this tutorial and comments here: Whole tutorial
If this does not work for you, you can try the tutorial of iberianpig, who made xSwipe. -> Tutorial
If you want to configure the gestures look here: -> https://github.com/iberianpig/xSwipe/wiki/Customize-eventKey.cfg
Here is my eventKey.cfg already configured for the 3 finger workspace swipe: http://pastebin.com/f1E1L26V
I'm running 15.04 and I got the three finger swipe working with xSwipe. I did it by following this tutorial:
Ubuntu 13.10, Mint 16, and Up
First download the following dependencies.
sudo apt-get install build-essential libevdev-dev autoconf automake libmtdev-dev xorg-dev xutils-dev libtool
Now, we need to remove the old driver so the new one will overwrite it.
sudo apt-get remove xserver-xorg-input-synaptics
Then, clone the source and build the new driver!
git clone https://github.com/felipejfc/xserver-xorg-input-synaptics.git
cd xserver-xorg-input-synaptics
./autogen.sh
./configure --exec_prefix=/usr
make
sudo make install
When this completes, reboot and make sure your pointer works.
Setting up xSwipe
First install the dependencies.
sudo apt-get install libx11-guitest-perl
Then enable SHMConfig to allow for handling of the gestures.
mkdir /etc/X11/xorg.conf.d/
sudo nano /etc/X11/xorg.conf.d/50-synaptics.conf
Fill the file with the following, and save it!
Section "InputClass"
Identifier "evdev touchpad catchall"
Driver "synaptics"
MatchDevicePath "/dev/input/event*"
MatchIsTouchpad "on"
Option "Protocol" "event"
Option "SHMConfig" "on"
EndSection
Now clone xSwipe to a location of your choosing.
git clone https://github.com/iberianpig/xSwipe.git
And change the eventkey.cfg file to your liking. EDIT: It seems in both 13.10 and 14.04 versions of Ubuntu (and any version of Cinnamon), the keys set in the "other" category are the ones that are signaled on key swipes. Ignore the ubuntu and gnome sections for unity and cinnnamon.
cd xSwipe/
nano eventkey.cfg
Now test by running:
perl xSwipe.pl
Try to swipe with different gestrues and check the terminal to see if they are working. If they are, you may now add the script to your start up programs depending on your environment. After it is added, reboot and you should have working multitouch gestures!
Update: This seems to take about an hour out of my battery life. To get around this, I change the sensitivity with the parameter -m 30.
perl xSwipe.pl -m 30
All credits go to Matthew Iannucci, find this tutorial and comments here: Whole tutorial
If this does not work for you, you can try the tutorial of iberianpig, who made xSwipe. -> Tutorial
If you want to configure the gestures look here: -> https://github.com/iberianpig/xSwipe/wiki/Customize-eventKey.cfg
Here is my eventKey.cfg already configured for the 3 finger workspace swipe: http://pastebin.com/f1E1L26V
edited Sep 2 '15 at 0:07
Reed Johnson
32
32
answered Sep 1 '15 at 15:29
JoeyJoey
1015
1015
Unfortunately the newxserver-xorg
from felipejfc does not seem to work properly for me.xserver-xorg
is broken after a reboot.
– hg8
Sep 2 '15 at 7:14
add a comment |
Unfortunately the newxserver-xorg
from felipejfc does not seem to work properly for me.xserver-xorg
is broken after a reboot.
– hg8
Sep 2 '15 at 7:14
Unfortunately the new
xserver-xorg
from felipejfc does not seem to work properly for me. xserver-xorg
is broken after a reboot.– hg8
Sep 2 '15 at 7:14
Unfortunately the new
xserver-xorg
from felipejfc does not seem to work properly for me. xserver-xorg
is broken after a reboot.– hg8
Sep 2 '15 at 7:14
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f650711%2f3-fingers-swipe-change-workspace-in-ubuntu-14-04%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@Daniel Why do you claim that obsolete 14.10 and non-LTS 15.04 are more stable that 14.04 LTS?
– Pilot6
Jul 21 '15 at 7:33
1
Wrong button @Pilot6
– Daniel
Jul 21 '15 at 17:08