Advertisement
Dobbie03

Autostart

May 29th, 2017
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. #
  2. # These things are run when an Openbox X Session is started.
  3. # You may place a similar script in $HOME/.config/openbox/autostart
  4. # to run user-specific things.
  5. #
  6.  
  7. # If you want to use GNOME config tools...
  8. #
  9. #if test -x /usr/lib/openbox/gnome-settings-daemon >/dev/null; then
  10. # /usr/lib/openbox/gnome-settings-daemon &
  11. #elif which gnome-settings-daemon >/dev/null 2>&1; then
  12. #gnome-settings-daemon &
  13. #fi
  14.  
  15. # If you want to use XFCE config tools...
  16. #
  17. xfce-mcs-manager &
  18.  
  19. #xrandr --output HDMI-A-0 --mode 2560x1440 --output DVI-D-0 --mode 2560x1440 &
  20. xrandr --output DisplayPort-0 --mode 3840x2160 --pos 0x0 --rotate normal --output DVI-D-0 --off --output HDMI-A-0 --mode 3840x2160 --pos 3840x0 --rotate normal &
  21.  
  22. compton -b -C &
  23.  
  24. tint2 &
  25.  
  26. # Set background image
  27. (sleep 5; nitrogen --restore) &
  28.  
  29. numlockx &
  30.  
  31. ## GNOME PolicyKit authentication
  32. #/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
  33. /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
  34.  
  35. ## Volume control for systray
  36. #(sleep 2; volti) &
  37.  
  38. ## Volume keys daemon
  39. xfce4-volumed &
  40.  
  41. ## Turn off/on System Beep
  42. xset b off
  43.  
  44. ## Volume control for systray
  45. (sleep 2; volumeicon) &
  46.  
  47. ## Enable power management
  48. xfce4-power-manager &
  49.  
  50. ##Clipboard Manager
  51. (sleep 3; clipit) &
  52.  
  53. ## XFCE4 Settings
  54. xfsettingsd &
  55.  
  56. mpd &
  57. mpdscribble &
  58.  
  59. ## Start xscreensaver (light-locker now used by default, run via XDG autostart.)
  60. xscreensaver -no-splash &
  61.  
  62. #lxsession &
  63.  
  64. ##pcmanfm desktop
  65. #pcmanfm --desktop &
  66.  
  67. #xfce4-panel &
  68. #(sleep 2; caffeine) &
  69. (sleep 2; plank) &
  70. #(sleep 5; covergloobus) &
  71. (sleep 5; nm-applet) &
  72. g610-led -a 90 &
  73.  
  74. (sleep 2s && al-conky-session --autostart) &
  75. #(sleep 1; AL-hotcorners --daemon) &
  76.  
  77.  
  78. #(for tint2 in $APPS ; do ($tint2 &) ; sleep $2 ; done) &
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement