picto_welcome.png  Welcome   

picto_download.png  Get Lubuntu   

picto_help.png  Documentation   

picto_contact.png  Get Help   


(X) This wiki should be considered unmaintained and deprecated, though some information may still be relevant. Please instead refer to Lubuntu.me.

Get Colorful Mouse Cursor

Instructions here

Change Mouse cursor for all apps

PCManFM and LxPanel don't use the cursor theme, you will have to change the cursor manually.
Edit /usr/share/icons/default/index.theme to list the correct cursor theme.
You will need to change the default cursor. More instructions here.

Touchpad settings

Edit ~/.config/lxsession/Lubuntu/autostart with the respective values to achieve the desired result on the following.

Please note there are many more options. Looking at the man pages for synaptics (the driver options), synclient (interfaces with the driver), & syndaemon (handles relationship between keyboard and touchpad) should reveal the breadth of them.

You can view current settings with

synclient -l

More common requests include:

Enable horizontal two finger scrolling

synclient HorizTwoFingerScroll=1

Disable tap to click

synclient MaxTapTime=0

Disable coasting (scrolling after release)

synclient CoastingSpeed=0

Disable touchpad while typing

syndaemon -d -t

Optionally add -k to allow for modifer keys so that you can do CTRL-click, for example.


Adjust Double-click speed in 12.04

1. Double-clicking in window titles

  • Start with the LXDE menu, go to Preferences. Open Openbox Configuration Manager. Find 'Mouse' on the window panel, click it. Should see 'Double Click Time' it at the bottom. No need to log out.

2. Double-clicking in PCManFM and on the desktop:

  • If you have difficulty in double-clicking to open files in PCManFM or files on your destop, you may want to increase the time you are allowed for two clicks to be registered as a "double click" and not as two separate single clicks. To do so, you will need to edit a file called .gtkrc-2.0 in your home directory. If you don't see this file, make sure you have enabled viewing of hidden files and folders (or use ls -a in your terminal window instead of plain ls). If you still don't see this file, you will need to create the file. Then, open the file and add a line with the new time in ms

gtk-double-click-time=400

The lower the number, the faster you need to double-click. You have to log out and log back in to see the changes. Source: How to adjust the double click's speed in PCManFM?


Disable how using the scrollwheel on the switches to the next Desktop

Before restarting openbox with this command: openbox --reconfigure
Edit ~/.config/openbox/lubuntu-rc.xml and remove these lines:

      <mousebind button="Up" action="Click">
        <action name="GoToDesktop">
          <to>previous</to>
        </action>
      </mousebind>
      <mousebind button="Down" action="Click">
        <action name="GoToDesktop">
          <to>next</to>
        </action>
      </mousebind>


My Touchpad Changes Desktop, How Do I stop it?

The scroll button on your mouse keeps changing the Desktop Workspace even when you're scrolling through a folder or file.

cd ~/.config/openbox
cp lubuntu-rc.xml lubuntu-rc.xml.bak

(this makes a backup file so that when you think you've messed it up you could revert it back.)

leafpad lubuntu-rc.xml

and delete the lines which says;

<mousebind button="UP" action="click">
 <action name="DesktopPrevious" />
<mousebind button="Down" action="click">
 <action name="DesktopNext" />

en 14.04 forigu la linioj, (borra las lĂ­neas)

<mousebind button="Up" action="Click">
 <action name="GoToDesktop">
  <to>previous</to>
 </action>
</mousebind>
<mousebind button="Down" action="Click">
 <action name="GoToDesktop">
  <to>next</to>
 </action>
</mousebind>

Log out and Log in back again to see the changes!

if you've messed it up and want to revert it back;

cp lubuntu-rc.xml.bak lubuntu-rc.xml


lubuntu-LXDE/Mouse (last edited 2021-05-28 04:15:09 by guiverc)