10

Is it possible to configure the taskbar to auto-hide after a certain period of time in Raspbian “wheezy” soft-float?

I was able to do something similar for the cursor by downloading a application called "unclutter". Is there any way to do this for the taskbar?

nc4pk
  • 1,378
  • 1
  • 13
  • 25
TopCaller
  • 103
  • 1
  • 1
  • 4

3 Answers3

21

Right-click on the taskbar and select "Panel Settings". Click on the "Advanced" tab, and check "Minimize panel when not in use".

nc4pk
  • 1,378
  • 1
  • 13
  • 25
6

FYI to have it gone all the time.

Edit the file /etc/xdg/lxsession/LXDE-pi/autostart

  1. comment out the line @lxpanel --profile LXDE-pi with # symbol

  2. reboot and the panel should disapear

Still working on Raspbian Buster


Find the original source here

Gage Leighton
  • 71
  • 1
  • 2
0

Setting autohide=1 and heightwhenhidden=0 in /etc/xdg/lxpanel/LXDE-pi/panels/panel

If you want to do this via the shell:

sudo sed -i "s/autohide=.*/autohide=1/" /etc/xdg/lxpanel/LXDE-pi/panels/panel
sudo sed -i "s/heightwhenhidden=.*/heightwhenhidden=0/" /etc/xdg/lxpanel/LXDE-pi/panels/panel
dazonic
  • 101
  • 1