1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-09-20 06:33:24 +01:00
wiki.mbirth.de/know-how/software/linux/_posts/2017-04-10-move-window-minimise-maximise-close-buttons.md
2017-04-10 21:49:54 +02:00

1.2 KiB

title layout created updated toc tags
Move window's minimise/maximise/close buttons default 2017-04-10 20:18:32 +0200 2017-04-10 20:18:32 +0200 false
know-how
software
linux
gnome
gtk
windows
buttons

There are two locations where you can define the button's location: dconf and gconf.

The dconf-method works for most of Gnome Shell and Unity. However, e.g. Chrome is using the "old" gconf-setting.

dconf

Install and run dconf-editor.

Go to orggnomedesktopwmpreferences and find the setting button-layout. The default value is: appmenu:close. To just add the minimise/maximise buttons (e.g. in Gnome Shell), change it to: appmenu:minimize,maximize,close.

To just move the close button to the left, use: close,appmenu:. (The : separates the buttons on the left and those on the right.)

You can also mix it up, e.g. close,appmenu:minimize,maximize.

gconf

Install and run gconf-editor.

Go to appsmetacitygeneral and find button_layout. Here, the default value is :minimize,maximize,close.

To get everything to the left, use close,minimize,maximize:.