11

I'm used to the close button in the upper right corner as in MS Windows. How to put it there?

jokerdino
  • 41,320
Jader Dias
  • 1,999

3 Answers3

12

Just paste the following in your terminal,

gconftool-2 --set "/apps/metacity/general/button_layout" --type string ":minimize,maximize,close"

Now you can see that your buttons are placed in the right side.

To revert:

gconftool-2 --set "/apps/metacity/general/button_layout" --type string "minimize,maximize,close:"
karthick87
  • 81,947
2

If you are less comfortable with then command line, then this is also a feature present in Ubuntu Tweak. This application helps you "tweak" many things on your Ubuntu installation, and I find it very useful (and very well maintained!).

S B
  • 809
1

Or you just install gconf-editor on your Ubuntu, then open it and look for apps >> metacity >> general >> button_layout

change the value to:

:minimize,maximize,close

Which means "fill with blank space, minimize, maximize, close", making the buttons to be shown at right.

guntbert
  • 13,134
  • For Version 11.10 (Oneiric Ocelot) this is a necessary step since gconf-editor is not installed by default. Accessing this utility directly also provides an answer to the question of rollback. I believe that the original setting is "close,maximize,minimize:" – CentaurusA Nov 24 '11 at 17:49