ede/data/startede.in

70 lines
1.5 KiB
Plaintext
Raw Normal View History

#!/bin/sh
#
# $Id: startede.in,v 1.1.1.1 2005/03/04 15:44:41 karijes Exp $
#
2009-01-23 18:04:08 +03:00
# Part of Equinox Desktop Environment (EDE).
# Copyright (c) 2007 EDE Authors.
#
# This program is licensed under terms of the
# GNU General Public License version 2 or newer.
# See COPYING for details.
# Main script responsible for starting and setting needed environment parts.
# Details about XDG_XXX data and how they are set is at:
# http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
2009-01-27 18:22:45 +03:00
PREFIX="@prefix@"
2009-01-27 18:22:45 +03:00
if [ "x$XDG_DATA_HOME" = "x" ]; then
2009-01-23 18:04:08 +03:00
XDG_DATA_HOME="$HOME/.local/share"
fi
2009-01-27 18:22:45 +03:00
if [ "x$XDG_CONFIG_HOME" = "x" ]; then
2009-01-23 18:04:08 +03:00
XDG_CONFIG_HOME="$HOME/.config"
fi
2009-01-27 18:22:45 +03:00
if [ "x$XDG_CACHE_HOME" = "x" ]; then
2009-01-23 18:04:08 +03:00
XDG_CACHE_HOME="$HOME/.cache"
fi
2009-01-27 18:22:45 +03:00
if [ "x$XDG_DATA_DIRS" = "x" ]; then
2009-01-23 18:04:08 +03:00
XDG_DATA_DIRS="/usr/local/share:/usr/share"
fi
2009-01-27 18:22:45 +03:00
if [ "x$XDG_CONFIG_DIRS" = "x" ]; then
2009-01-23 18:04:08 +03:00
XDG_CONFIG_DIRS="/etc/xdg"
fi
2009-01-23 18:04:08 +03:00
[ -d $XDG_DATA_HOME ]; || mkdir -p $XDG_DATA_HOME
[ -d $XDG_CONFIG_HOME ]; || mkdir -p $XDG_CONFIG_HOME
[ -d $XDG_CACHE_HOME ]; || mkdir -p $XDG_CACHE_HOME
export XDG_DATA_HOME
export XDG_CONFIG_HOME
export XDG_CACHE_HOME
export XDG_DATA_DIRS
export XDG_CONFIG_DIRS
PATH=$PATH:$PREFIX:$PREFIX/bin
export PATH
2009-01-23 18:04:08 +03:00
userresources=$HOME/.Xdefaults
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
2009-01-23 18:04:08 +03:00
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
# set background inside X
XSETROOT=`which xsetroot 2> /dev/null`
if [ "$XSETROOT" ]; then
$XSETROOT -solid black
fi
2009-01-23 18:04:08 +03:00
# start session
evoke --startup --autostart --log stdout