b258ffc98c
Copy from home:vuntz:branches:GNOME:Factory/gnome-shell via accept of submit request 21965 revision 13. Request was accepted with message: Forwarding to openSUSE:Factory OBS-URL: https://build.opensuse.org/request/show/21965 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=15
13 lines
292 B
Bash
13 lines
292 B
Bash
#!/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 $*
|