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.
 
 
 
 
 
 

30 lines
747 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 &
  9. dropboxd & # done by ~/.config/autostart/dropbox.desktop
  10. volumeicon &
  11. conky -c ~/.dotfiles/conkyrc >~/.backup/log/conky.log 2>&1 &
  12. conky -c ~/.dotfiles/conkyrc.2 >~/.backup/log/conky.2.log 2>&1 &
  13. #wicd-client --tray & # done by /etc/xdg/autostart/wicd-client.desktop
  14. # Detection of insertion of an optical disk
  15. if ! pgrep -lf "udisks-daemon: polling /dev/sr0"; then
  16. udisks --poll-for-media /dev/sr0
  17. fi
  18. udisksvm >/dev/null &
  19. xcompmgr -c &
  20. (cd ~/src/saku-3.11.1/ && python2 saku.py) &