#!/bin/sh cd $HOME # I don't like no background ;) sh $HOME/.fehbg & numlockx & xset r rate 250 50 & # also in ~/bin/suspend-resume.sh source $HOME/bin/gpg-agent.sh # autostart entries #xcompmgr & xbindkeys & xmodmap -e "remove lock = Caps_Lock" & urxvtd -o -f -q xautolock -nowlocker $HOME/bin/screen-locker.sh -locker $HOME/bin/screen-locker.sh -time 5 & sh $HOME/bin/irssi_notify.sh < /dev/null & chat_terminal () { urxvt -g 125x+45+1051+260 -e ssh mistral & # temp replacement for the notify script #urxvt -g 90x+5+1226+991 -e ssh mistral 'tail -f .irssi/fnotify' & } autostart () { for f in $XDG_CONFIG_HOME/conky/*; do conky -c "$f" & done gajim & /opt/Samsung/SmartPanel/bin/smartpanel & #urxvtc -e $HOME/bin/screen.sh 2 & chat_terminal & ossxmix -b & # also in ~/bin/suspend-resume.sh thunderbird & liferea & stalonetray -w -p & zim & blueman-applet & } # WM case "$1" in awesome) autostart exec ck-launch-session awesome ;; twm) autostart exec ck-launch-session twm ;; console) urxvtc & exec ck-launch-session dbus-launch openbox-session ;; *|openbox) autostart exec ck-launch-session dbus-launch openbox-session ;; esac