elementary / wingpanel

Stylish top panel that holds indicators and spawns an application launcher
https://elementary.io
GNU General Public License v3.0
137 stars 44 forks source link

[question] #314

Closed ghost closed 4 years ago

ghost commented 4 years ago

I use this

#!/bin/bash
result=`ps aux | grep -i "Wingpanel" | grep -v "grep" | wc -l`
if [ $result -ge 1 ]
   then
    killall cerbere &> /dev/null
    wait
    killall wingpanel &> /dev/null
      else
        wingpanel &> /dev/null &
fi

to get wingpanel auto_hide.

davidmhewitt commented 4 years ago

Cerbere isn't used anymore, so the cerbere setting won't do anything, and the script hasn't been updated.

If you don't want wingpanel to autostart, remove it's autostart from /etc/xdg/autostart. Do so at your own risk though. I don't know what side effects removing components of the session has.

Closing this as it's not an issue.

ghost commented 4 years ago

After removing wingpanel, maybe the screen will stay on elementary logo forever. Maybe.

ghost commented 4 years ago

Is there any other setting monitering wingpanel in case of its crashing. I guess there exists one. When running this script after booting, wingpanel restarts once.