03-08-2015, 08:51 PM
This is how I reset the panel:
First I quit the panel
Then I kill the xfce4 configuration daemon
Remove the config files
And clear the session as well.
Copy the default configuration from the skeleton folder.
And finally I restart the panel. This will also respawn tne xfce4 configuration daemon.
Instead of running all the commands line by line I use this oneliner:
What you did was this:
That removes the panel an then asks you to use default xfce4 configuration or a blank panel.
First I quit the panel
Code:
xfce4-panel --quitCode:
pkill xfconfdCode:
rm -rf ~/.config/xfce4Code:
rm -rf ~/.config/xfce4-sessionCode:
cp -Rf /etc/skel/.config/xfce4 ~/.config/xfce4Code:
cp -Rf /etc/skel/.config/xfce4-session ~/.config/xfce4-sessionCode:
xfce4-panelInstead 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-panelWhat 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;
