13 lines
292 B
Plaintext
13 lines
292 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# Script to start a GNOME session in a GNOME 3 preview mode.
|
||
|
#
|
||
|
|
||
|
if test -n "$XDG_CONFIG_DIRS"; then
|
||
|
export XDG_CONFIG_DIRS=/usr/share/gnome-shell/xdg-override:$XDG_CONFIG_DIRS
|
||
|
else
|
||
|
export XDG_CONFIG_DIRS=/usr/share/gnome-shell/xdg-override:/etc/xdg
|
||
|
fi
|
||
|
|
||
|
exec /usr/bin/gnome $*
|