How can I move the gnome dock to the left side?

16,526

Solution 1

Open a terminal and type:

gsettings set org.gnome.shell.extensions.dock position left

For 3.2 users, here is another way:

Type in a terminal:

gedit ~/.local/share/gnome-shell/extensions/[email protected]/extension.js 

About line 44 find:

const DOCK_POSITION = PositionMode.RIGHT; 

change to

const DOCK_POSITION = PositionMode.LEFT; 

Save, exit, refresh gnome-shell (hit [Alt+F2] followed by r) and enjoy!

Solution 2

  1. Open dconf-editor
  2. Go to /org/gnome/shell/extensions/dock
  3. Toggle autohide and left/right position from there

Source: Ubuntu Forums

Share:
16,526

Related videos on Youtube

Paul Woitaschek
Author by

Paul Woitaschek

Updated on September 18, 2022

Comments

  • Paul Woitaschek
    Paul Woitaschek over 1 year

    I installed the gnome panel: https://extensions.gnome.org/extension/17/dock/

    but its on the right side, which is quite annoying becaus it alway popps up when using the scrollbar. How can I move it to the left?

  • Paul Woitaschek
    Paul Woitaschek almost 12 years
    Could not load schemas from ./schemas: Datei »./schemas/gschemas.compiled« konnte nicht geöffnet werden: open() ist gescheitert: Datei oder Verzeichnis nicht gefunden
  • Paul Woitaschek
    Paul Woitaschek almost 12 years
    "Datei"=file "konnte nicht geöffnet werden"=could not be opened "Datei oder Verzeichnis nicht gefunden"="File or folder not found
  • jasmines
    jasmines almost 12 years
    Try with my new edit.
  • jasmines
    jasmines almost 12 years
    Please, translate.
  • Paul Woitaschek
    Paul Woitaschek almost 12 years
    Hard^^ I think it wants to say, that "org.gnome.shell.extensions.dock" not exists.
  • jasmines
    jasmines almost 12 years
    Ok, it seems you're running a different version of gnome-shell. Try with my last edit.
  • Paul Woitaschek
    Paul Woitaschek almost 12 years
    Im running 3.4.1-0ubuntu2 should I do that anyway?
  • Paul Woitaschek
    Paul Woitaschek almost 12 years
    There is no org.gnome.shell.extensions just apps, desktop, schemas & system. Searched the whole folders via Strg+F
  • jasmines
    jasmines almost 12 years
    I'm afraid you're searching with gconf-editor, not dconf-editor...
  • Paul Woitaschek
    Paul Woitaschek almost 12 years
    There is no extensions. Just calendar, clock, keybindings, keyboard, overrides, recorder
  • jasmines
    jasmines almost 12 years
    That looks very strange. Try the manual solution!