Advertisement
datstartup

autostart

Nov 16th, 2015
1,941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 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/x86_64-linux-gnu/gnome-settings-daemon >/dev/null; then
  10. # /usr/lib/x86_64-linux-gnu/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. ## Group start:
  19. ## 1. nitrogen - restores wallpaper
  20. ## 2. compositor - start
  21. ## 3. sleep - give compositor time to start
  22. ## 4. conky
  23. ## 5. tint2 panel
  24.  
  25. nitrogen --restore &
  26. (sleep 3s && tint2 -c ~/.config/tint2/tint2pager) &
  27. #(sleep 20s && conky) &
  28.  
  29. ## Composite
  30. #compton -m 0.92 -i 0.86 -e 0.8 -b &
  31.  
  32. (sleep 3s && lxpanel) &
  33. ## Start Thunar Daemon
  34. thunar --daemon &
  35.  
  36. ## mount the STORAGE partion at startup
  37. udisksctl mount -b /dev/sda7 -o umask=022 &
  38.  
  39. ## Detect and configure touchpad. See 'man synclient' for more info.
  40. if egrep -iq 'touchpad' /proc/bus/input/devices; then
  41. synclient VertEdgeScroll=1 &
  42. synclient TapButton1=1 &
  43. fi
  44.  
  45.  
  46. ##Turn off touchpad when typing
  47. (sleep 3s && syndaemon -i 1 -K -d) &
  48. ##Volume Icon
  49. #(sleep 3s && volti) &
  50. ##Baterry Icon
  51. #(sleep 4s && cbatticon) &
  52. #Turn off Touchpad and only using external mouse:
  53. #(sleep 4s && synclient TouchpadOff=1) &
  54. #Enable tab to click
  55. #(sleep 3s synclient tapbutton1 =1) &
  56. #thunar &
  57. #firefox &
  58. #thunderbird &
  59. #terminator &
  60. #/usr/sbin/wprotate.sh &
  61.  
  62. (sleep 4s && killall dropbox) &
  63.  
  64. ##Dropbox
  65. (sleep 7s && ~/.dropbox-dist/dropboxd) &
  66. ##Turnoff powersaving for Logitech Mouse
  67. #(sleep 20s echo on > /sys/bus/usb/devices/1-1.2/power/control) &
  68. ##Ibus
  69. #(sleep 10s && ibus-daemon) &
  70. (sleep 5s && wicd-gtk --tray) &
  71. (sleep 3s && light-locker) &
  72. #(sleep 4s && /home/dat/Scripts/NotifyToWalk/NotifytoWalkBash.sh) &
  73.  
  74. (sleep 10s && mate-power-manager) &
  75. #(sleep 30s &&conky -c ~/.conkyrc) &
  76. (sleep 4s && icedove) &
  77. (sleep 10s && safeeyes) &
  78.  
  79.  
  80.  
  81. (sleep 3s && lxpolkit) &
  82.  
  83. #(sleep 1s && tint2 -c /home/dat/.config/tint2/systray-tint2rc) &
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement