Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # This shell script is run before Openbox launches.
  2. # Environment variables set here are passed to the Openbox session.
  3.  
  4. # D-bus
  5. if which dbus-launch >/dev/null && test -z "$DBUS_SESSION_BUS_ADDRESS"; then
  6. eval `dbus-launch --auto-syntax --exit-with-session`
  7. fi
  8.  
  9. # Set a background color
  10. nitrogen --restore &
  11.  
  12. #Run X Composite Manager
  13. xcompmgr -c &
  14.  
  15. # Run Panel App
  16. bmpanel2 &
  17.  
  18. # Run Quake-like terminal emulator
  19. yeahconsole &
  20.  
  21. # Run XKB layout switcher
  22. xxkb &
  23.  
  24. # Run Volume Control
  25. volti &
  26.  
  27. # NetworkManager
  28. nm-applet &
  29.  
  30. # Run XDG autostart things. By default don't run anything desktop-specific
  31. # See xdg-autostart --help more info
  32. # DESKTOP_ENV=""
  33. # if which which /usr/lib/openbox/xdg-autostart >/dev/null; then
  34. # /usr/lib/openbox/xdg-autostart $DESKTOP_ENV
  35. # fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement