autostart 525 B

1234567891011121314151617181920212223242526272829303132
  1. #!/bin/sh
  2. dbus-daemon --session --address=unix:path=$XDG_CONFIG_HOME/bus &
  3. ## music player daemon-you might prefer it as a service though
  4. mpd &
  5. ## Set background
  6. wbg "$XDG_CONFIG_HOME/wallpaper/dwm.jpg" &
  7. ## Update contacts in Nextcloud
  8. while true; do
  9. vdirsyncer sync
  10. sleep 600s
  11. done &
  12. ## Check mail
  13. while true; do
  14. mailsync
  15. sleep 60s
  16. done &
  17. ## Clipboard manager
  18. wl-paste --type=text --watch cliphist store &
  19. ## Disable touchpad
  20. # thinkpad-touchpad
  21. ## Start terminal
  22. foot -e tmux attach || foot -e tmux &
  23. # foot &