5

As the title says,

How can I disable or re-assign the "semi-maximize left" keyboard shortcut in Ubuntu 13.10? By default it is bound to Ctrl + Super +

I have tried to change the bindings for the "put left" action with compizconfig-settings-manager as suggested by the previous question for Ubuntu 12.04. This however no longer works in Ubuntu 13.10.

This question is motivated by the keyboard shortcut conflicts between the default Unity desktop and IntelliJ IDEA.

1 Answers1

3

For 13.10

  1. Open CompizConfig Setting Manager (ccsm)
  2. Look for Ubuntu Unity Plugin in Desktop groupGeneral Tab:
  3. Disable:

    • Key to vertically maximize the focused window to the right
    • Key to vertically maximize the focused window to the left

Or just run:

dconf write /org/compiz/profiles/unity/plugins/unityshell/window-right-maximize "'Disabled'"
dconf write /org/compiz/profiles/unity/plugins/unityshell/window-left-maximize "'Disabled'"

For 14.04

  1. Open CompizConfig Setting Manager (ccsm)
  2. Look for Grid in Window Management group → Binding Tab:
  3. Disable:

    • Left maximize
    • Right maximize

Or just run:

dconf write /org/compiz/profiles/unity/plugins/grid/left-maximize "'Disabled'"
dconf write /org/compiz/profiles/unity/plugins/grid/right-maximize "'Disabled'"
user.dz
  • 48,105
  • I already accepted your answer, but if you have links to official documentation, they may count to your favor by possible future voters. – Eero Aaltonen Mar 24 '14 at 09:32
  • 1
    Yep, If I got some I will put them. Just to mention for dconf commands, I made change through ccsm and monitor changes using dconf watch /, Ref: man dconf – user.dz Mar 24 '14 at 09:52
  • For anybody wondering, the 14.04 solution still works in 16.04. – John P Bloch Jan 19 '17 at 18:07