![]() |
[SOLVED] System Tray Default Settings - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Installing Linux Lite (https://www.linuxliteos.com/forums/forumdisplay.php?fid=17) +--- Thread: [SOLVED] System Tray Default Settings (/showthread.php?tid=1602) |
[SOLVED] System Tray Default Settings - Jocklad - 03-02-2015 Is there a Terminal command to get the system tray back to default settings in LL 2.2 A friend has really messed his up. Jocklad Re: System Tray default setting - Scott(0) - 03-02-2015 Hi Jocklad, I'm not aware of a terminal command but that means one probably does exist. In the meantime would creating a new user so you could log into that account and make notes on the default tray settings help? Re: System Tray Default Settings - Jocklad - 03-02-2015 Thanks Scott will have another look at it. Jocklad Re: System Tray Default Settings - rokytnji - 03-02-2015 Code: Is there a Terminal command to get the system tray back to default settings in LL 2.2 Yes. But it involves deleting some files in config to bring it back to stock so I would wait for jerry or misko to supply a answer. I will not supply the command myself. Re: System Tray Default Settings - gold_finger - 03-07-2015 Jocklad, Don't know if there is a command to start fresh with standard LL panel. Don't know exactly what your friend's problem is, but have him look at this section of help manual to delete/add things until it's back to what he wants: https://www.linuxliteos.com/manual/customize_desktop.html#panel Or, delete /home/hisusername/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml. Then log out and back in again. At login it will ask if want a default setup or just one blank panel. (Default in this situation is NOT an LL default -- it's a standard Xfce default with a top and bottom panel. Might be best to pick option for one blank panel, then just add things on to it following above Help Manual page.) Re: System Tray Default Settings - Jocklad - 03-07-2015 Thanks Gold_finger. I will see him in the next couple of days and try that. Many thanks. Jocklad ![]() Re: System Tray Default Settings - shengchieh - 03-08-2015 Will this workaround work? Others correct me if not. Create another user - let that user have root access. Move all your file to that user. Remove bad user. (? Can that bad user be remove if it was the principle user in installation?) Create 2nd new user with same name as bad user and root access. Move everything back to 2nd user. Others, what do think? Sheng-Chieh Re: System Tray Default Settings - Jocklad - 03-08-2015 Many thanks to you all. I managed to create a new systray with the help of Goldfingers link. All is well. I will mark this as solved. Jocklad ![]() ![]() ![]() Re: [SOLVED] System Tray Default Settings - Jocklad - 03-08-2015 Just to add: When i created the new systray it was at the top of the screen,I really wanted it at the bottom. Solution is simple: Right click on systray and unlock,drag the tray to bottom with the mouse and re-lock. Simple as that. It may help someone else. Jocklad ![]() Re: [SOLVED] System Tray Default Settings - anon222 - 03-08-2015 This is how I reset the panel: First I quit the panel Code: xfce4-panel --quit Code: pkill xfconfd Code: rm -rf ~/.config/xfce4 Code: rm -rf ~/.config/xfce4-session Code: cp -Rf /etc/skel/.config/xfce4 ~/.config/xfce4 Code: cp -Rf /etc/skel/.config/xfce4-session ~/.config/xfce4-session Code: xfce4-panel Instead of running all the commands line by line I use this oneliner: 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 ; xfce4-panel What you did was this: Code: xfce4-panel --quit ; pkill xfconfd ; rm -rf ~/.config/xfce4/panel ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml ; xfce4-panel; |