sjwilliams1881
Unregistered
I am very new to Linux and i am loving it..unfortunately i got a little trigger happy adjusting my settings. i was just wondering of there were a way to restore the default desktop environment
Thank you in advance.
Posts: 739
Threads: 17
Joined: Nov 2014
Reputation:
0
01-08-2015, 03:14 AM
(This post was last modified: 01-13-2015, 06:36 PM by Scott(0).)
Hey , can you post a pic of what s that you got ! It might help on fixing your issues mate .
HP DV7 i7 2670QM 500.1GB 8GB Ram Dual-Boot LL2.4 Beta / Extix 15.1.1 64-bit
Dell Inspiron 1720 CrunchBang 11
Duckduckgo ( for now )
sjwilliams1881
Unregistered
01-08-2015, 03:33 AM
(This post was last modified: 01-13-2015, 06:36 PM by Scott(0).)
It's quite embarrassing actually i was scaling the launch bar size and i went a little to far and it ended up taking up my whole screen i'm running it on a Acer netbook it was a fairly fresh install so i ended up re-installing but i would like to know for future reference if it is at all possible to restore the default environment.
Posts: 739
Threads: 17
Joined: Nov 2014
Reputation:
0
01-08-2015, 03:38 AM
(This post was last modified: 01-13-2015, 06:37 PM by Scott(0).)
lol , I did it once , no worries .
I ve been reinstalling for 7-8 years ! lol
Is that the whole bar ( or the Panel that went off ) that dissapeared ! or some stuff in the bar itself .
HP DV7 i7 2670QM 500.1GB 8GB Ram Dual-Boot LL2.4 Beta / Extix 15.1.1 64-bit
Dell Inspiron 1720 CrunchBang 11
Duckduckgo ( for now )
Posts: 688
Threads: 49
Joined: Jul 2014
01-10-2015, 12:49 AM
(This post was last modified: 01-13-2015, 06:37 PM by Scott(0).)
Theoretically it's possible. If you are willing to test this in a VM Scott(0) this is what I have in mind:
First I would back up ~/.config/xfce4 and ~/.config/xfce4-session just in case
Code:
cp -r ~/.config/xfce4 ~/.config/xfce4.old
cp -r ~/.config/xfce4-session ~/.config/xfce4-session.old
And if something goes wrong you can restore the folders.
then kill the panel and xfconfd and copy xfce4 xfce4-session from /etc/skel/.config
/etc/skel there are the files that are used when a new user is created. skel like a skeleton for the new user.
Here is one-liner
Code:
xfce4-panel --quit ; pkill xfconfd ; rm -rf ~/.config/xfce4; rm -rf ~/.config/xfce4-session ; cp -Rf /etc/skel/.config/xfce4 ~/.config/xfce4; cp -Rf /etc/skel/.config/xfce4-session ~/.config/xfce4-session ; sudo reboot
After reboot it should work. In theory.
I'm not sure will indicator plugins be as they were on first boot.
Cheers
Posts: 857
Threads: 47
Joined: Feb 2014
Reputation:
0
01-11-2015, 02:47 PM
(This post was last modified: 01-13-2015, 06:38 PM by Scott(0).)
Hello to all,
Misko contacted me regarding his previous (reply #5) to let me know his tests were successful. Running the commands listed above should have the result of "resetting" your desktop to the defaults of a fresh install.
Thanks again, Misko!
Scott
Posts: 1
Threads: 0
Joined: Oct 2017
Reputation:
0
Many, many thanks, Misko!