summaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: 32855210f2e9851980c287620a5927cadf224e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh
cd $HOME

# I don't like no background ;)
dash $HOME/.fehbg &

numlockx
xset r rate 250 50 & # also in ~/bin/suspend-resume.sh
source $HOME/bin/gpg-agent.sh

# autostart entries
setxkbmap de nodeadkeys
xbindkeys &
xmodmap ~/.xmodmaprc &
xautolock -nowlocker $HOME/bin/screen-locker.sh -locker $HOME/bin/screen-locker.sh -time 10 &
/usr/lib/xfce4/notifyd/xfce4-notifyd &

autostart () {
  notipy.py -a SOUTH_EAST -m 0,1920,0,0 &
  urxvt -g 125x+45+1041+0 -e ssh mistral &
#	urxvt -g 125x+45+1920+0 -e ssh karif &
  stalonetray --dockapp-mode -p --kludges force_icons_size &
  for f in $XDG_CONFIG_HOME/conky/*; do
    conky -c "$f" &
  done
  rm -f $HOME/passwords.kdb.lock
  keepassx&
  transmission-remote-gtk &
  ossmixer.py &> /dev/null &
  thunderbird &
  liferea &
  zim &
  parcellite &
  $HOME/git/thetime/src/thetime -t "%F %H:%M:%S" -p 1921,1040 -f "xft:DejaVu Sans:size=10"
}

# WM
case "$1" in
  console)
    openbox &
    sleep 1
    urxvt &
  ;;
  *|openbox) 
    openbox &
    sleep 1
    autostart &
  ;;
esac

exec xinitrc