1234567891011121314151617181920212223242526272829303132 |
- #!/bin/sh
- dbus-daemon --session --address=unix:path=$XDG_CONFIG_HOME/bus &
- ## music player daemon-you might prefer it as a service though
- mpd &
- ## Set background
- wbg "$XDG_CONFIG_HOME/wallpaper/dwm.jpg" &
- ## Update contacts in Nextcloud
- while true; do
- vdirsyncer sync
- sleep 600s
- done &
- ## Check mail
- while true; do
- mailsync
- sleep 60s
- done &
- ## Clipboard manager
- wl-paste --type=text --watch cliphist store &
- ## Disable touchpad
- # thinkpad-touchpad
- ## Start terminal
- foot -e tmux attach || foot -e tmux &
- # foot &
|