Single tap working as right click and double tap as single in Ubuntu 18.04 with Unity

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
2
down vote

favorite












I am using Ubuntu 18.04 with Unity installed. Mouse was working fine until I updated using apt-get upgrade, after which, single tap opens right click menu. And tapping with two fingers selects the file. Actually pressing the touchpad buttons work fine but taps are switched. Anyone knows how to fix this?







share|improve this question




















  • Is the problem persists if you use GNOME instead of Unity?
    – Aryo Adhi
    May 26 at 8:05






  • 1




    It works fine on GNOME. @AryoAdhi
    – bejuzb
    May 26 at 17:24














up vote
2
down vote

favorite












I am using Ubuntu 18.04 with Unity installed. Mouse was working fine until I updated using apt-get upgrade, after which, single tap opens right click menu. And tapping with two fingers selects the file. Actually pressing the touchpad buttons work fine but taps are switched. Anyone knows how to fix this?







share|improve this question




















  • Is the problem persists if you use GNOME instead of Unity?
    – Aryo Adhi
    May 26 at 8:05






  • 1




    It works fine on GNOME. @AryoAdhi
    – bejuzb
    May 26 at 17:24












up vote
2
down vote

favorite









up vote
2
down vote

favorite











I am using Ubuntu 18.04 with Unity installed. Mouse was working fine until I updated using apt-get upgrade, after which, single tap opens right click menu. And tapping with two fingers selects the file. Actually pressing the touchpad buttons work fine but taps are switched. Anyone knows how to fix this?







share|improve this question












I am using Ubuntu 18.04 with Unity installed. Mouse was working fine until I updated using apt-get upgrade, after which, single tap opens right click menu. And tapping with two fingers selects the file. Actually pressing the touchpad buttons work fine but taps are switched. Anyone knows how to fix this?









share|improve this question











share|improve this question




share|improve this question










asked May 26 at 7:39









bejuzb

111




111











  • Is the problem persists if you use GNOME instead of Unity?
    – Aryo Adhi
    May 26 at 8:05






  • 1




    It works fine on GNOME. @AryoAdhi
    – bejuzb
    May 26 at 17:24
















  • Is the problem persists if you use GNOME instead of Unity?
    – Aryo Adhi
    May 26 at 8:05






  • 1




    It works fine on GNOME. @AryoAdhi
    – bejuzb
    May 26 at 17:24















Is the problem persists if you use GNOME instead of Unity?
– Aryo Adhi
May 26 at 8:05




Is the problem persists if you use GNOME instead of Unity?
– Aryo Adhi
May 26 at 8:05




1




1




It works fine on GNOME. @AryoAdhi
– bejuzb
May 26 at 17:24




It works fine on GNOME. @AryoAdhi
– bejuzb
May 26 at 17:24










1 Answer
1






active

oldest

votes

















up vote
2
down vote













You can add xserver-xorg-input-synaptics package and enable tapping.



Steps:



  1. sudo apt-get install xserver-xorg-input-synaptics


  2. sudo mkdir -p /etc/X11/xorg.conf.d

  3. sudo touch /etc/X11/xorg.conf.d/40-libinput.conf

  4. Add the following config in 40-libinput.conf

    Section "InputClass"
    Identifier "libinput touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "libinput"
    Option "Tapping" "on"
    EndSection


  5. Restart lightdm - systemctl restart lightdm

Source: https://wiki.debian.org/SynapticsTouchpad






share|improve this answer




















    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',
    convertImagesToLinks: true,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );








     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1040502%2fsingle-tap-working-as-right-click-and-double-tap-as-single-in-ubuntu-18-04-with%23new-answer', 'question_page');

    );

    Post as a guest






























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    2
    down vote













    You can add xserver-xorg-input-synaptics package and enable tapping.



    Steps:



    1. sudo apt-get install xserver-xorg-input-synaptics


    2. sudo mkdir -p /etc/X11/xorg.conf.d

    3. sudo touch /etc/X11/xorg.conf.d/40-libinput.conf

    4. Add the following config in 40-libinput.conf

      Section "InputClass"
      Identifier "libinput touchpad catchall"
      MatchIsTouchpad "on"
      MatchDevicePath "/dev/input/event*"
      Driver "libinput"
      Option "Tapping" "on"
      EndSection


    5. Restart lightdm - systemctl restart lightdm

    Source: https://wiki.debian.org/SynapticsTouchpad






    share|improve this answer
























      up vote
      2
      down vote













      You can add xserver-xorg-input-synaptics package and enable tapping.



      Steps:



      1. sudo apt-get install xserver-xorg-input-synaptics


      2. sudo mkdir -p /etc/X11/xorg.conf.d

      3. sudo touch /etc/X11/xorg.conf.d/40-libinput.conf

      4. Add the following config in 40-libinput.conf

        Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
        EndSection


      5. Restart lightdm - systemctl restart lightdm

      Source: https://wiki.debian.org/SynapticsTouchpad






      share|improve this answer






















        up vote
        2
        down vote










        up vote
        2
        down vote









        You can add xserver-xorg-input-synaptics package and enable tapping.



        Steps:



        1. sudo apt-get install xserver-xorg-input-synaptics


        2. sudo mkdir -p /etc/X11/xorg.conf.d

        3. sudo touch /etc/X11/xorg.conf.d/40-libinput.conf

        4. Add the following config in 40-libinput.conf

          Section "InputClass"
          Identifier "libinput touchpad catchall"
          MatchIsTouchpad "on"
          MatchDevicePath "/dev/input/event*"
          Driver "libinput"
          Option "Tapping" "on"
          EndSection


        5. Restart lightdm - systemctl restart lightdm

        Source: https://wiki.debian.org/SynapticsTouchpad






        share|improve this answer












        You can add xserver-xorg-input-synaptics package and enable tapping.



        Steps:



        1. sudo apt-get install xserver-xorg-input-synaptics


        2. sudo mkdir -p /etc/X11/xorg.conf.d

        3. sudo touch /etc/X11/xorg.conf.d/40-libinput.conf

        4. Add the following config in 40-libinput.conf

          Section "InputClass"
          Identifier "libinput touchpad catchall"
          MatchIsTouchpad "on"
          MatchDevicePath "/dev/input/event*"
          Driver "libinput"
          Option "Tapping" "on"
          EndSection


        5. Restart lightdm - systemctl restart lightdm

        Source: https://wiki.debian.org/SynapticsTouchpad







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jun 2 at 9:55









        BKS

        2581311




        2581311






















             

            draft saved


            draft discarded


























             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1040502%2fsingle-tap-working-as-right-click-and-double-tap-as-single-in-ubuntu-18-04-with%23new-answer', 'question_page');

            );

            Post as a guest













































































            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491