Advertisement
straemer

Toggle Sidebar Autohide

May 22nd, 2013
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.30 KB | None | 0 0
  1. #!/bin/bash
  2. AUTOHIDE=$(dconf read /org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode)
  3. if (( $AUTOHIDE == "1" ))
  4. then
  5.     dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode 0
  6. else
  7.     dconf write /org/compiz/profiles/unity/plugins/unityshell/launcher-hide-mode 1
  8. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement