mirror of
https://github.com/kastdeur/dotfiles.git
synced 2025-05-14 20:09:26 +02:00
Added beatmaker files
This commit is contained in:
parent
811a903869
commit
979739552d
13 changed files with 116 additions and 25 deletions
63
xinitrc
63
xinitrc
|
@ -1,3 +1,60 @@
|
|||
exec unity
|
||||
#exec xterm
|
||||
#exec /usr/bin/gnome-session --session=unity
|
||||
#!/bin/sh
|
||||
#Standard Stuff
|
||||
. /etc/X11/xinit/xinitrc-common
|
||||
if [ -f $HOME/.Xclients ]; then
|
||||
exec $CK_XINIT_SESSION $SSH_AGENT $HOME/.Xclients || \
|
||||
exec $CK_XINIT_SESSION $SSH_AGENT $HOME/.Xclients
|
||||
elif [ -f /etc/X11/xinit/Xclients ]; then
|
||||
exec $CK_XINIT_SESSION $SSH_AGENT /etc/X11/xinit/Xclients || \
|
||||
exec $CK_XINIT_SESSION $SSH_AGENT /etc/X11/xinit/Xclients
|
||||
else
|
||||
# Failsafe settings. Although we should never get here
|
||||
# (we provide fallbacks in Xclients as well) it can't hurt.
|
||||
[ -x /usr/bin/xsetroot ] && /usr/bin/xsetroot -solid '#222E45'
|
||||
[ -x /usr/bin/xclock ] && /usr/bin/xclock -geometry 100x100-5+5 &
|
||||
[ -x /usr/bin/xterm ] && xterm -geometry 80x50-50+150 &
|
||||
[ -x /usr/bin/twm ] && /usr/bin/twm
|
||||
fi
|
||||
# ---------------------------------------------------------------
|
||||
# OWN
|
||||
# ---------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
# Load session
|
||||
DEFAULT_SESSION=awesome
|
||||
XTERM=xterm
|
||||
case $1 in
|
||||
xfce4)
|
||||
exec startxfce4
|
||||
;;
|
||||
awesome)
|
||||
xscreensaver -nosplash &
|
||||
nm-applet &
|
||||
exec awesome >> $HOME/.cache/awesome/stdout 2>> $HOME/.cache/awesome/stderr
|
||||
;;
|
||||
enlightenment)
|
||||
exec enlightenment_start
|
||||
;;
|
||||
openbox)
|
||||
exec openbox
|
||||
;;
|
||||
cinnamon)
|
||||
exec cinnamon
|
||||
;;
|
||||
kde)
|
||||
exec startkde
|
||||
;;
|
||||
gnome)
|
||||
exec gnome-session
|
||||
;;
|
||||
unity)
|
||||
exec unity
|
||||
;;
|
||||
xterm)
|
||||
exec xterm
|
||||
;;
|
||||
*)
|
||||
exec $DEFAULT_SESSION
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue