You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
779 B

  1. #!/bin/sh
  2. # Programs run in background when starting x.
  3. # These programs are basically for Openbox Window Manager.
  4. # Japanese IM settings are not included in this list.
  5. test -f "$HOME/.fehbg" &&
  6. type feh >/dev/null 2>&1 &&
  7. sh "$HOME/.fehbg"
  8. #tint2 -c ~/.dotfiles/tint2rc &
  9. tint2 &
  10. dropboxd & # done by ~/.config/autostart/dropbox.desktop
  11. volumeicon &
  12. conky -c ~/.dotfiles/conkyrc >~/.backup/log/conky.log 2>&1 &
  13. conky -c ~/.dotfiles/conkyrc.2 >~/.backup/log/conky.2.log 2>&1 &
  14. #wicd-client --tray & # done by /etc/xdg/autostart/wicd-client.desktop
  15. # Detection of insertion of an optical disk
  16. if ! pgrep -lf "udisks-daemon: polling /dev/sr0"; then
  17. udisks --poll-for-media /dev/sr0
  18. fi
  19. udisksvm >/dev/null &
  20. xcompmgr -c &
  21. (cd ~/src/saku-3.11.1/ && python2 saku.py) &