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.

Eero Aaltonen
  • 1,424
  • 3
  • 13
  • 33

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'"
Eero Aaltonen
  • 1,424
  • 3
  • 13
  • 33
user.dz
  • 49,176