Advertisement
Dobbie03

auto

Dec 29th, 2017
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 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. #
  8. #if test -x /usr/lib/openbox/gnome-settings-daemon >/dev/null; then
  9. # /usr/lib/openbox/gnome-settings-daemon &
  10. #elif which gnome-settings-daemon >/dev/null 2>&1; then
  11. #gnome-settings-daemon &
  12. #fi
  13.  
  14. # If you want to use XFCE config tools...
  15. #
  16. xfce-mcs-manager &
  17.  
  18. ##Screen Stuff
  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. xrandr --output DisplayPort-0 --mode 3840x2160 --output HDMI-A-0 --auto --right-of DisplayPort-0
  22.  
  23. ##Visual Stuff
  24. compton -b -C &
  25.  
  26. ## Set Background Image
  27. (sleep 5; nitrogen --restore) &
  28.  
  29. ##Turn On Numlock
  30. (sleep 5; numlockx) &
  31.  
  32. ##Thunar Daemon (Loads Thunar Quicker)
  33. thunar --daemon &
  34.  
  35. ## GNOME PolicyKit Authentication
  36. #/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
  37. /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
  38.  
  39. ## Volume Keys Daemon
  40. xfce4-volumed &
  41.  
  42. ## Turn off/on System Beep
  43. xset b off
  44.  
  45. ## Enable Power Management
  46. xfce4-power-manager &
  47.  
  48. ## XFCE4 Settings
  49. xfsettingsd &
  50.  
  51. ## MPD Management
  52. #mpd &
  53. #mpdscribble &
  54.  
  55. ## Start Xscreensaver
  56. xscreensaver -no-splash &
  57.  
  58. ##PCmanFM Controls Desktop
  59. ##pcmanfm desktop
  60. #pcmanfm --desktop &
  61.  
  62. ##Panel Options
  63. #xfce4-panel &
  64. #(sleep 2; plank) &
  65. tint2 &
  66. (sleep 5; polybar -r ob-bar) &
  67. #(sleep 1; $HOME/.config/polybar/polybar.sh) &
  68.  
  69. ##Applets and Other Things
  70. #(sleep 2; caffeine) &
  71. #(sleep 5; covergloobus) &
  72. #(sleep 5; nm-applet) &
  73. g610-led -a 90 &
  74. (sleep 3; clipit) &
  75. #(sleep 2; greenclip daemon) &
  76. #(sleep 2; volumeicon) &
  77. #(sleep 2; volti) &
  78. #(sleep 5; trayer --edge bottom --align right --heighttype pixel --height 40 --SetDockType true --widthtype request --expand true --alpha 255 --transparent true) &
  79.  
  80. ##Window Control
  81. (sleep 2; skippy-xd --config $HOME/.config/skippy-xd/skippy-xd.rc --start-daemon) &
  82.  
  83. ##Conky
  84. #(sleep 2s && al-conky-session --autostart) &
  85.  
  86. ## set mouse accelleration scale is a fraction slower=1/2, none=0/0, faster=2/1..etc.
  87. xset m 0 0 &
  88.  
  89. #(for tint2 in $APPS ; do ($tint2 &) ; sleep $2 ; done) &
  90.  
  91. # let super key alone open rofi
  92. ksuperkey -e 'Super_L=Alt_L|F1' &
  93.  
  94. # Desktop Window Snapping
  95. #opensnap --daemon -c /etc/opensnap
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement