Touchpad Gestures in Ubuntu 18.04 LTSIs there an exposé like window overview feature in xubuntu?How to map three finger swipe up to view all open windowsHow can I use multitouch gestures under LXQt with a touchscreen?Dell XPS 13 9350 touchpad multi finger gesture on Ubuntu 19.04configuring stock tackpad gestures on 19.04Laptop touchpad triggering 3-finger gestures randomlyMultitouch Trackpad Gestures Dell XPS 15multitouch gestures in GNOME-ShellTouchpad gestures don't work on Dell XPS 15 L521xenable all touchpad functionsMulit-touch touchpad gestures Ubuntu 15.04How to configure stock Ubuntu Wayland gestures (18.10)How do I enable trackpad gestures (3 finger swipe, etc) on my Zenbook running Ubuntu 18.04 LTS?
Evil plans - how do you come up with interesting ones?
How do I report players in Halo: The Master Chief Collection on PC?
How to educate bachelor and master exchange students from Asia?
Is there a reason "Hoopy" is rarely used in The Hitchhiker's Guide?
String replacement with dictionaries -- follow up
Prospective employer asking for my current pay slip during interview
Are two Pangeas possible?
What should be done if I suspect a player is using weighted dice?
Which object has been to space the most times?
Most general definition of differentiation
Can two moons have intersecting orbits yet be guaranteed not to collide?
How can I convince my department that I have the academic freedom to select textbooks and use multiple-choice tests in my courses?
mimic a image frame
Did Roger Rabbit exist prior to the film "Who Framed Roger Rabbit?"
Is it academically dishonest to submit the same project to two different classes in the same semester?
Compatibility level of SQL Server
Simple Markdown viewer for Windows
What's the best way to keep cover of a pan slightly opened?
Can socialism and capitalism coexist in the same country?
Can a German employer force mandatory overtime and forbid salary discussion?
Number puzzle. Can you replace the question mark?
Did the computer mouse always output relative x/y and not absolute?
Twelve Labours - #12 Pluto Pups
Where to start with a child learning chess?
Touchpad Gestures in Ubuntu 18.04 LTS
Is there an exposé like window overview feature in xubuntu?How to map three finger swipe up to view all open windowsHow can I use multitouch gestures under LXQt with a touchscreen?Dell XPS 13 9350 touchpad multi finger gesture on Ubuntu 19.04configuring stock tackpad gestures on 19.04Laptop touchpad triggering 3-finger gestures randomlyMultitouch Trackpad Gestures Dell XPS 15multitouch gestures in GNOME-ShellTouchpad gestures don't work on Dell XPS 15 L521xenable all touchpad functionsMulit-touch touchpad gestures Ubuntu 15.04How to configure stock Ubuntu Wayland gestures (18.10)How do I enable trackpad gestures (3 finger swipe, etc) on my Zenbook running Ubuntu 18.04 LTS?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Out of the box, I get gestures for scrolling and right clicking. I'm very interested in three finger gestures (like slide three fingers up to see all open windows), but it seems there is no way to get those working.
I have tried with the Extended Gestures GNOME-shell extension and touchegg, neither of which are working.
Any ideas on how to get these?
gnome touchpad gestures
add a comment
|
Out of the box, I get gestures for scrolling and right clicking. I'm very interested in three finger gestures (like slide three fingers up to see all open windows), but it seems there is no way to get those working.
I have tried with the Extended Gestures GNOME-shell extension and touchegg, neither of which are working.
Any ideas on how to get these?
gnome touchpad gestures
add a comment
|
Out of the box, I get gestures for scrolling and right clicking. I'm very interested in three finger gestures (like slide three fingers up to see all open windows), but it seems there is no way to get those working.
I have tried with the Extended Gestures GNOME-shell extension and touchegg, neither of which are working.
Any ideas on how to get these?
gnome touchpad gestures
Out of the box, I get gestures for scrolling and right clicking. I'm very interested in three finger gestures (like slide three fingers up to see all open windows), but it seems there is no way to get those working.
I have tried with the Extended Gestures GNOME-shell extension and touchegg, neither of which are working.
Any ideas on how to get these?
gnome touchpad gestures
gnome touchpad gestures
asked May 10 '18 at 19:14
MisguidedMisguided
6091 gold badge7 silver badges10 bronze badges
6091 gold badge7 silver badges10 bronze badges
add a comment
|
add a comment
|
4 Answers
4
active
oldest
votes
I am using XPS 15 with Ubuntu 18.04 (X.org). I have managed to get multi-gestures working for me. Kohei Yamada has developed an application called Fusuma to enable multi-touch gestures on Linux. It requires you to install Ruby on your machine if it isn't already installed.
Follow the instructions from fusuma GitHub's Readme page or you could follow these steps which worked for me:
First of all check if your current user is part of the input group. You can do that by
sudo gpasswd -a $USER input
Then log out and log back in. Now install xdotool and libinput-tools.
sudo apt-get install libinput-tools
sudo apt-get install xdotool
If you haven't installed Ruby you can do that now:
sudo apt install ruby
Now install fusuma
sudo gem install fusuma
Deciding your gestures
This is basically creating a .yml
file with the desired configuration. If you want standard gestures you can follow these instructions or feel free to tweak around to get desired gestures.
Go to your config folder in home directory.
cd ~/.config
Now create a folder named fusuma
mkdir fusuma
cd fusuma
In there create a file called config.yml
touch config.yml
Now you can use your favourite text editor to enter the contents in this file.
nano config.yml
Copy and paste the following instructions if you are using GNOME, which is the default environment in 18.04.
swipe:
3:
left:
command: 'xdotool key alt+Right'
right:
command: 'xdotool key alt+Left'
up:
command: 'xdotool key super'
down:
command: 'xdotool key super'
4:
left:
command: 'xdotool key ctrl+alt+Down'
right:
command: 'xdotool key ctrl+alt+Up'
up:
command: 'xdotool key ctrl+alt+Down'
down:
command: 'xdotool key ctrl+alt+Up'
pinch:
in:
command: 'xdotool key ctrl+plus'
out:
command: 'xdotool key ctrl+minus'
threshold:
swipe: 0.4
pinch: 0.4
interval:
swipe: 0.8
pinch: 0.1
Note that the gestures that this configuration has created for you are the following:
Mult-touch Gesture | Action |
3 Fingers - Left | Go Next on Browser |
3 Fingers - Right | Go Back on Browser |
3 Fingers - Up | Show all Windows|
3 Fingers - Down | Close Exposé (Esc) |
4 Fingers - Left | Next Desktop |
4 Fingers - Right | Previous Desktop|
4 Fingers - Up | Next Desktop|
4 Fingers - Down | Previous Desktop|
After this you can run the command in terminal to test if it has installed
sudo fusuma
nothing will happen in the terminal. Just start using your multi-touch gestures - swipe away on your touchpad.
Now all you have to do is add Fusuma and the command for it in your start-up applications.
Hope this helps.
1
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
1
Works great! Thanks a lot. Note, it should be:sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
1
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
2
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
|
show 5 more comments
Ubuntu 18.04 uses Xorg as the default display server instead of Wayland. The mentioned Extended Gestures extension currently works only with Wayland.
What you need to do is choose Wayland while logging in after a restart.
This link shows the same procedure but the other way around (from Wayland to Xorg).
add a comment
|
Working on 18.10 (XPS 9570):
Simply search for "Startup application" by pressing the super key (windows key in my case) then add a new application.
add the command fusuma
and then reboot to test it.
add a comment
|
There is a three finger gesture that's included with Ubuntu 18:04. I accidentally figured it out.
Just pinch in or out with any three fingers. You can see all the active application's window.
Note: I have tested this on Ubuntu 18:04 only. It might work on other versions too. It also depends on the touchpad driver supported by the hardware. I am using Dell precision 5530.
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/4.0/"u003ecc by-sa 4.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%2f1034624%2ftouchpad-gestures-in-ubuntu-18-04-lts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
I am using XPS 15 with Ubuntu 18.04 (X.org). I have managed to get multi-gestures working for me. Kohei Yamada has developed an application called Fusuma to enable multi-touch gestures on Linux. It requires you to install Ruby on your machine if it isn't already installed.
Follow the instructions from fusuma GitHub's Readme page or you could follow these steps which worked for me:
First of all check if your current user is part of the input group. You can do that by
sudo gpasswd -a $USER input
Then log out and log back in. Now install xdotool and libinput-tools.
sudo apt-get install libinput-tools
sudo apt-get install xdotool
If you haven't installed Ruby you can do that now:
sudo apt install ruby
Now install fusuma
sudo gem install fusuma
Deciding your gestures
This is basically creating a .yml
file with the desired configuration. If you want standard gestures you can follow these instructions or feel free to tweak around to get desired gestures.
Go to your config folder in home directory.
cd ~/.config
Now create a folder named fusuma
mkdir fusuma
cd fusuma
In there create a file called config.yml
touch config.yml
Now you can use your favourite text editor to enter the contents in this file.
nano config.yml
Copy and paste the following instructions if you are using GNOME, which is the default environment in 18.04.
swipe:
3:
left:
command: 'xdotool key alt+Right'
right:
command: 'xdotool key alt+Left'
up:
command: 'xdotool key super'
down:
command: 'xdotool key super'
4:
left:
command: 'xdotool key ctrl+alt+Down'
right:
command: 'xdotool key ctrl+alt+Up'
up:
command: 'xdotool key ctrl+alt+Down'
down:
command: 'xdotool key ctrl+alt+Up'
pinch:
in:
command: 'xdotool key ctrl+plus'
out:
command: 'xdotool key ctrl+minus'
threshold:
swipe: 0.4
pinch: 0.4
interval:
swipe: 0.8
pinch: 0.1
Note that the gestures that this configuration has created for you are the following:
Mult-touch Gesture | Action |
3 Fingers - Left | Go Next on Browser |
3 Fingers - Right | Go Back on Browser |
3 Fingers - Up | Show all Windows|
3 Fingers - Down | Close Exposé (Esc) |
4 Fingers - Left | Next Desktop |
4 Fingers - Right | Previous Desktop|
4 Fingers - Up | Next Desktop|
4 Fingers - Down | Previous Desktop|
After this you can run the command in terminal to test if it has installed
sudo fusuma
nothing will happen in the terminal. Just start using your multi-touch gestures - swipe away on your touchpad.
Now all you have to do is add Fusuma and the command for it in your start-up applications.
Hope this helps.
1
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
1
Works great! Thanks a lot. Note, it should be:sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
1
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
2
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
|
show 5 more comments
I am using XPS 15 with Ubuntu 18.04 (X.org). I have managed to get multi-gestures working for me. Kohei Yamada has developed an application called Fusuma to enable multi-touch gestures on Linux. It requires you to install Ruby on your machine if it isn't already installed.
Follow the instructions from fusuma GitHub's Readme page or you could follow these steps which worked for me:
First of all check if your current user is part of the input group. You can do that by
sudo gpasswd -a $USER input
Then log out and log back in. Now install xdotool and libinput-tools.
sudo apt-get install libinput-tools
sudo apt-get install xdotool
If you haven't installed Ruby you can do that now:
sudo apt install ruby
Now install fusuma
sudo gem install fusuma
Deciding your gestures
This is basically creating a .yml
file with the desired configuration. If you want standard gestures you can follow these instructions or feel free to tweak around to get desired gestures.
Go to your config folder in home directory.
cd ~/.config
Now create a folder named fusuma
mkdir fusuma
cd fusuma
In there create a file called config.yml
touch config.yml
Now you can use your favourite text editor to enter the contents in this file.
nano config.yml
Copy and paste the following instructions if you are using GNOME, which is the default environment in 18.04.
swipe:
3:
left:
command: 'xdotool key alt+Right'
right:
command: 'xdotool key alt+Left'
up:
command: 'xdotool key super'
down:
command: 'xdotool key super'
4:
left:
command: 'xdotool key ctrl+alt+Down'
right:
command: 'xdotool key ctrl+alt+Up'
up:
command: 'xdotool key ctrl+alt+Down'
down:
command: 'xdotool key ctrl+alt+Up'
pinch:
in:
command: 'xdotool key ctrl+plus'
out:
command: 'xdotool key ctrl+minus'
threshold:
swipe: 0.4
pinch: 0.4
interval:
swipe: 0.8
pinch: 0.1
Note that the gestures that this configuration has created for you are the following:
Mult-touch Gesture | Action |
3 Fingers - Left | Go Next on Browser |
3 Fingers - Right | Go Back on Browser |
3 Fingers - Up | Show all Windows|
3 Fingers - Down | Close Exposé (Esc) |
4 Fingers - Left | Next Desktop |
4 Fingers - Right | Previous Desktop|
4 Fingers - Up | Next Desktop|
4 Fingers - Down | Previous Desktop|
After this you can run the command in terminal to test if it has installed
sudo fusuma
nothing will happen in the terminal. Just start using your multi-touch gestures - swipe away on your touchpad.
Now all you have to do is add Fusuma and the command for it in your start-up applications.
Hope this helps.
1
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
1
Works great! Thanks a lot. Note, it should be:sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
1
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
2
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
|
show 5 more comments
I am using XPS 15 with Ubuntu 18.04 (X.org). I have managed to get multi-gestures working for me. Kohei Yamada has developed an application called Fusuma to enable multi-touch gestures on Linux. It requires you to install Ruby on your machine if it isn't already installed.
Follow the instructions from fusuma GitHub's Readme page or you could follow these steps which worked for me:
First of all check if your current user is part of the input group. You can do that by
sudo gpasswd -a $USER input
Then log out and log back in. Now install xdotool and libinput-tools.
sudo apt-get install libinput-tools
sudo apt-get install xdotool
If you haven't installed Ruby you can do that now:
sudo apt install ruby
Now install fusuma
sudo gem install fusuma
Deciding your gestures
This is basically creating a .yml
file with the desired configuration. If you want standard gestures you can follow these instructions or feel free to tweak around to get desired gestures.
Go to your config folder in home directory.
cd ~/.config
Now create a folder named fusuma
mkdir fusuma
cd fusuma
In there create a file called config.yml
touch config.yml
Now you can use your favourite text editor to enter the contents in this file.
nano config.yml
Copy and paste the following instructions if you are using GNOME, which is the default environment in 18.04.
swipe:
3:
left:
command: 'xdotool key alt+Right'
right:
command: 'xdotool key alt+Left'
up:
command: 'xdotool key super'
down:
command: 'xdotool key super'
4:
left:
command: 'xdotool key ctrl+alt+Down'
right:
command: 'xdotool key ctrl+alt+Up'
up:
command: 'xdotool key ctrl+alt+Down'
down:
command: 'xdotool key ctrl+alt+Up'
pinch:
in:
command: 'xdotool key ctrl+plus'
out:
command: 'xdotool key ctrl+minus'
threshold:
swipe: 0.4
pinch: 0.4
interval:
swipe: 0.8
pinch: 0.1
Note that the gestures that this configuration has created for you are the following:
Mult-touch Gesture | Action |
3 Fingers - Left | Go Next on Browser |
3 Fingers - Right | Go Back on Browser |
3 Fingers - Up | Show all Windows|
3 Fingers - Down | Close Exposé (Esc) |
4 Fingers - Left | Next Desktop |
4 Fingers - Right | Previous Desktop|
4 Fingers - Up | Next Desktop|
4 Fingers - Down | Previous Desktop|
After this you can run the command in terminal to test if it has installed
sudo fusuma
nothing will happen in the terminal. Just start using your multi-touch gestures - swipe away on your touchpad.
Now all you have to do is add Fusuma and the command for it in your start-up applications.
Hope this helps.
I am using XPS 15 with Ubuntu 18.04 (X.org). I have managed to get multi-gestures working for me. Kohei Yamada has developed an application called Fusuma to enable multi-touch gestures on Linux. It requires you to install Ruby on your machine if it isn't already installed.
Follow the instructions from fusuma GitHub's Readme page or you could follow these steps which worked for me:
First of all check if your current user is part of the input group. You can do that by
sudo gpasswd -a $USER input
Then log out and log back in. Now install xdotool and libinput-tools.
sudo apt-get install libinput-tools
sudo apt-get install xdotool
If you haven't installed Ruby you can do that now:
sudo apt install ruby
Now install fusuma
sudo gem install fusuma
Deciding your gestures
This is basically creating a .yml
file with the desired configuration. If you want standard gestures you can follow these instructions or feel free to tweak around to get desired gestures.
Go to your config folder in home directory.
cd ~/.config
Now create a folder named fusuma
mkdir fusuma
cd fusuma
In there create a file called config.yml
touch config.yml
Now you can use your favourite text editor to enter the contents in this file.
nano config.yml
Copy and paste the following instructions if you are using GNOME, which is the default environment in 18.04.
swipe:
3:
left:
command: 'xdotool key alt+Right'
right:
command: 'xdotool key alt+Left'
up:
command: 'xdotool key super'
down:
command: 'xdotool key super'
4:
left:
command: 'xdotool key ctrl+alt+Down'
right:
command: 'xdotool key ctrl+alt+Up'
up:
command: 'xdotool key ctrl+alt+Down'
down:
command: 'xdotool key ctrl+alt+Up'
pinch:
in:
command: 'xdotool key ctrl+plus'
out:
command: 'xdotool key ctrl+minus'
threshold:
swipe: 0.4
pinch: 0.4
interval:
swipe: 0.8
pinch: 0.1
Note that the gestures that this configuration has created for you are the following:
Mult-touch Gesture | Action |
3 Fingers - Left | Go Next on Browser |
3 Fingers - Right | Go Back on Browser |
3 Fingers - Up | Show all Windows|
3 Fingers - Down | Close Exposé (Esc) |
4 Fingers - Left | Next Desktop |
4 Fingers - Right | Previous Desktop|
4 Fingers - Up | Next Desktop|
4 Fingers - Down | Previous Desktop|
After this you can run the command in terminal to test if it has installed
sudo fusuma
nothing will happen in the terminal. Just start using your multi-touch gestures - swipe away on your touchpad.
Now all you have to do is add Fusuma and the command for it in your start-up applications.
Hope this helps.
edited Jan 21 at 5:49
answered Jun 6 '18 at 14:50
Rachit KingerRachit Kinger
7313 silver badges9 bronze badges
7313 silver badges9 bronze badges
1
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
1
Works great! Thanks a lot. Note, it should be:sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
1
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
2
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
|
show 5 more comments
1
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
1
Works great! Thanks a lot. Note, it should be:sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
1
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
2
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
1
1
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
even though this works, it's not a packaged app that can be used by any user, needs minimal technical expertise. But yeah, it does work great
– akabhirav
Jun 27 '18 at 10:40
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
thanks akabhirav. I don't know how to make packaged apps but I would love to st art... can this one be repurposed into a package? and would you be willing to help me do that?
– Rachit Kinger
Jun 28 '18 at 10:52
1
1
Works great! Thanks a lot. Note, it should be:
sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
Works great! Thanks a lot. Note, it should be:
sudo gem install fusuma
– mace
Sep 17 '18 at 7:44
1
1
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
Hey @RachitKinger thanks for the detailed steps, just one suggestion, after the "mkdir fusuma" step, just add the command to enter into the folder that's just been created, because people new to Linux may directly paste and run the next step "touch config.yml", which will result in the config file being generated outside of the fusuma directory.
– Ghos3t
Oct 12 '18 at 17:58
2
2
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
Thanks for the suggestion @Ghos3t while I have mentioned that the config file should be created inside the fusuma folder, I guess you are right that if one looks only at the code then one is likely to miss that. I have added a line to change directory now.
– Rachit Kinger
Oct 14 '18 at 4:38
|
show 5 more comments
Ubuntu 18.04 uses Xorg as the default display server instead of Wayland. The mentioned Extended Gestures extension currently works only with Wayland.
What you need to do is choose Wayland while logging in after a restart.
This link shows the same procedure but the other way around (from Wayland to Xorg).
add a comment
|
Ubuntu 18.04 uses Xorg as the default display server instead of Wayland. The mentioned Extended Gestures extension currently works only with Wayland.
What you need to do is choose Wayland while logging in after a restart.
This link shows the same procedure but the other way around (from Wayland to Xorg).
add a comment
|
Ubuntu 18.04 uses Xorg as the default display server instead of Wayland. The mentioned Extended Gestures extension currently works only with Wayland.
What you need to do is choose Wayland while logging in after a restart.
This link shows the same procedure but the other way around (from Wayland to Xorg).
Ubuntu 18.04 uses Xorg as the default display server instead of Wayland. The mentioned Extended Gestures extension currently works only with Wayland.
What you need to do is choose Wayland while logging in after a restart.
This link shows the same procedure but the other way around (from Wayland to Xorg).
answered May 19 '18 at 10:35
Ahmad EldefrawyAhmad Eldefrawy
712 bronze badges
712 bronze badges
add a comment
|
add a comment
|
Working on 18.10 (XPS 9570):
Simply search for "Startup application" by pressing the super key (windows key in my case) then add a new application.
add the command fusuma
and then reboot to test it.
add a comment
|
Working on 18.10 (XPS 9570):
Simply search for "Startup application" by pressing the super key (windows key in my case) then add a new application.
add the command fusuma
and then reboot to test it.
add a comment
|
Working on 18.10 (XPS 9570):
Simply search for "Startup application" by pressing the super key (windows key in my case) then add a new application.
add the command fusuma
and then reboot to test it.
Working on 18.10 (XPS 9570):
Simply search for "Startup application" by pressing the super key (windows key in my case) then add a new application.
add the command fusuma
and then reboot to test it.
answered Apr 3 at 15:26
Gilles CharlierGilles Charlier
111 bronze badge
111 bronze badge
add a comment
|
add a comment
|
There is a three finger gesture that's included with Ubuntu 18:04. I accidentally figured it out.
Just pinch in or out with any three fingers. You can see all the active application's window.
Note: I have tested this on Ubuntu 18:04 only. It might work on other versions too. It also depends on the touchpad driver supported by the hardware. I am using Dell precision 5530.
add a comment
|
There is a three finger gesture that's included with Ubuntu 18:04. I accidentally figured it out.
Just pinch in or out with any three fingers. You can see all the active application's window.
Note: I have tested this on Ubuntu 18:04 only. It might work on other versions too. It also depends on the touchpad driver supported by the hardware. I am using Dell precision 5530.
add a comment
|
There is a three finger gesture that's included with Ubuntu 18:04. I accidentally figured it out.
Just pinch in or out with any three fingers. You can see all the active application's window.
Note: I have tested this on Ubuntu 18:04 only. It might work on other versions too. It also depends on the touchpad driver supported by the hardware. I am using Dell precision 5530.
There is a three finger gesture that's included with Ubuntu 18:04. I accidentally figured it out.
Just pinch in or out with any three fingers. You can see all the active application's window.
Note: I have tested this on Ubuntu 18:04 only. It might work on other versions too. It also depends on the touchpad driver supported by the hardware. I am using Dell precision 5530.
answered Sep 27 at 7:12
SparkzzSparkzz
214 bronze badges
214 bronze badges
add a comment
|
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%2f1034624%2ftouchpad-gestures-in-ubuntu-18-04-lts%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