How do I enable Alt + middle mouse button window resizing in Xubuntu?

As of the 11.10 release I've switched from vanilla Ubuntu to Xubuntu for a plethora of reasons. Thus far I'm loving XFCE and have nearly everything configured the way I like it. The one thing that's still got me stumped is alt + middle mouse button window resizing. How do I accomplish this in Xubuntu/XFCE?

3 Answers

You can use Alt + Right Button drag.

3

I think Alt+[Middle Mouse Button] is the Key binding used by default on Compiz and I don't know if there's a way to configure xfce to do that, but you can always type Alt+F8 to resize windows using the arrow keys.

Anyway if you want to install Compiz you can put sudo apt-get compiz on a terminal, and to run it from the startup copy the file /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml to your ~/.config/xfce4/xfconf/xfce-perchannel-xml directory (if it is not already there) and change the lines

<property name="Client0_Command" type="array"> <value type="string" value="xfwm4"/>
</property>

by

<property name="Client0_Command" type="array"> <value type="string" value="compiz"/> <value type="string" value="ccp"/>
</property>
6

The following worked for me:

  1. Type xfce4-settings-manager in terminal
  2. Then click "Settings Editor"
  3. Then to the left, click "xfwm4 channel", then in the right pane change the value of "easy_click" to Alt (or &lt;alt&gt;)

Now Alt+mouse right click to move your window.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like