20 lines
286 B
Bash
20 lines
286 B
Bash
# vim:set ft=sh:
|
|
|
|
start() {
|
|
pidof -sx $1 || $@ &
|
|
}
|
|
|
|
xwallpaper --zoom "${XDG_DATA_HOME:-$HOME/.local/share}/bg" &
|
|
killall remaps
|
|
remaps &
|
|
checkup &
|
|
|
|
start playerctld daemon
|
|
start picom
|
|
start unclutter -noevents
|
|
start dunst
|
|
start pipewire
|
|
start wireplumber
|
|
start dwmblocks
|
|
start remapd
|