summarylogtreecommitdiffstats
path: root/pantheon-session.sh
blob: 273b97d8ee0a2315d1694e3518e223e61f1a16bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

export XDG_CURRENT_DESKTOP=Pantheon
if [ -n "$1" ]; then
  case $1 in
    lite) # Reduced resource usage with openbox in place of gala
      exec gnome-session --session pantheon-openbox
    ;;
    3d) # Improved functionality and decor with compiz in place of gala
      exec gnome-session --session pantheon-compiz
    ;;
    *) # Other custom sessions
      exec gnome-session --session pantheon-$1
    ;;
  esac
else
  exec gnome-session --session gnome-shell
fi