Skip to content

Instantly share code, notes, and snippets.

@javierarilos
Created July 28, 2015 10:30
Show Gist options
  • Save javierarilos/e4b66b75046ee61927d2 to your computer and use it in GitHub Desktop.
Save javierarilos/e4b66b75046ee61927d2 to your computer and use it in GitHub Desktop.
XFCE4 show and hide panel
#!/bin/bash
#Description: xfconf-query to get the panel, and change its configuration
#If it is not working, check you have xfce4-panel: xfconf-query should list it.
#Then, check your panel name: xfconf-query -c xfce4-panel -l and modify it in the
#commands.
xfconf-query -c xfce4-panel -p /panels/panel-1/autohide -s false
sleep 2
xfconf-query -c xfce4-panel -p /panels/panel-1/autohide -s true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment