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.
 
 
 
 
 
 

23 lines
558 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. #wicd-client --tray & # done by /etc/xdg/autostart/wicd-client.desktop
  12. # Detection of insertion of an optical disk
  13. if ! pgrep -lf "udisks-daemon: polling /dev/sr0"; then
  14. udisks --poll-for-media /dev/sr0
  15. fi
  16. udisksvm >/dev/null &