I was playing around in Unity 2D, and I messed up my configuration. How can I reset it, preferably without losing other config files? (such as Empathy config, Firefox/Chrome config, etc)

link|improve this question

@type: That restarts - I want to reset. For Unity, a simple unity --reset will do the trick - I want the equivalent for Unity 2D. – jrg Sep 9 '11 at 18:49
@jrg - can you clarify what you mean "messed up my configuration" - what is wrong? Can you post a picture in your question? – fossfreedom Sep 9 '11 at 21:49
@fossfreedom It's a hypothetical question - similar to How do I reset my Unity configuration and How do I reset GNOME? - it's a legitimate question though. – jrg Sep 10 '11 at 0:48
feedback

2 Answers

Open a terminal and type

dconf reset -f /

to reset Unity 2D to defaults, or IMPORTANT - THIS RESETS EVERYTHING NOT JUST UNITY-2D

unity --reset

to reset Unity (3D).

If default Ubuntu Nautilus theme is also missing, close all instances and type

rm -R ~/.gconf/apps/nautilus
link|improve this answer
THIS RESETS EVERYTHING - do not use this on a casual basis! – fossfreedom Dec 17 '11 at 17:04
feedback

To reset unity type the following in the terminal:

unity --reset

To reset the unity icons type:

unity --reset-icons

To reset Compiz type (NOTE: this will reset ALL compiz settings):

   gconftool-2 --recursive-unset /apps/compiz-1
unity --reset

The above command will reset the respective elements back to their default configuration.

link|improve this answer
Nope, that's for normal Unity. This is for Unity 2D, not 3D. Thanks for the answer though, it's already documented here – jrg Sep 9 '11 at 16:38
Also, resetting compiz doesn't apply here, since Unity 2D uses metacity - Unity 3D is just a giant compiz plugin. – jrg Sep 9 '11 at 16:45
Yes. I wasn't thinking at the time I guess ;) – Adam Thompson Sep 10 '11 at 4:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.