autostart 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. # UI Appearance - Open Last Theme (wallpaper, panel, notify-daemon)
  8. current="$(cat ~/.config/openbox/visual-mode/current)"
  9. bash ~/.config/openbox/visual-mode/$current/ui
  10. #temp panel
  11. #xfce4-panel &
  12. # Tray
  13. #bash ~/.config/openbox/tray
  14. #nm-applet
  15. # Compositor
  16. picom -b
  17. # Policy Kit
  18. lxpolkit &
  19. # Power Manager
  20. xfce4-power-manager &
  21. # Lock Screen Handler
  22. #xss-lock -- /usr/bin/slimlock &
  23. #light-locker &
  24. # Apps & Others (ex:mpd)
  25. mpd &
  26. xclip &
  27. # Input Device config
  28. # Touchpad Natural Scrolling, Tap-to-click, Flat Accel, & Pointer Speed
  29. #xinput set-prop "ETPS/2 Elantech Touchpad" "libinput Tapping Enabled" 1 &
  30. #xinput set-prop "ETPS/2 Elantech Touchpad" "libinput Natural Scrolling Enabled" 1 &
  31. #xinput set-prop "ETPS/2 Elantech Touchpad" "libinput Accel Profile Enabled" 0, 1 &
  32. #xinput set-prop "ETPS/2 Elantech Touchpad" "libinput Accel Speed" 0.5 &
  33. # Mouse Flat Acceleration + Pointer Speed
  34. #xinput set-prop "Logitech G102 Prodigy Gaming Mouse" "libinput Accel Profile Enabled" 0, 1 &
  35. #xinput set-prop "Logitech G102 Prodigy Gaming Mouse" "libinput Accel Speed" 0.2 &