summarylogtreecommitdiffstats
path: root/autostart
blob: a9e18c8a2f69a53a7a88abca9e2e66929bf0c732 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#Black void background
[[ -n "$(command -v hsetroot)" ]] && hsetroot -solid "#000000" &

#Pantheon Lite components
if [[ "$(echo ${XDG_CURRENT_DESKTOP})" == "Pantheon" ]]; then

  #Start a compositor; kill to reduce resource usage.
  [[ -n "$(command -v picom)" ]] && picom --dbus &

  #Initiate wingpanel if cerbere failed
  [[ -z "$(pidof wingpanel)" ]] && wingpanel &

  #Initiate plank if cerbere failed
  [[ -z "$(pidof plank)" ]] && plank &
fi