Running Xubuntu without panels

7,243

Solution 1

In /etc/xdg/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml

Just comment the xfce-panel section.

Solution 2

Pending a better option, you could just nuke it after it loads. Crunchbang does something like this in ~/.config/xfce4/autostart.sh

#!/bin/bash

# ...other autostart things...

if [ "$(pidof xfce4-panel)" ]; then
    killall xfce4-panel &
fi

avant-window-navigator &

Yes, it's a hack... But it should work.

Solution 3

If you're using an Xubuntu distribution with xfce 4.8, you should be able to disable it from the Settings Manager. Click the icon for Panel, and there should be a drop-down list. Select the panel that corresponds to the panel you want to remove, and click the delete button beside it:

enter image description here

Share:
7,243

Related videos on Youtube

Borsook
Author by

Borsook

Updated on September 18, 2022

Comments

  • Borsook
    Borsook over 1 year

    I'm running Xubuntu with AWN and I would like to turn off all the XFCE panels, but it does not allow me to do so with the last one. Is there any way to do it?

    • Admin
      Admin over 12 years
      What version of Ubuntu are you using?
  • Borsook
    Borsook almost 13 years
    how exactly can I do that?