18 lines
320 B
Bash
Executable File
18 lines
320 B
Bash
Executable File
#!/bin/sh
|
|
# shellcheck disable=SC2068,SC2086
|
|
|
|
start() {
|
|
pidof -sx $1 || $@ &
|
|
}
|
|
|
|
start xwallpaper --zoom "${XDG_DATA_HOME:-$HOME/.local/share}/bg"
|
|
start pipewire
|
|
start remaps -qd
|
|
start checkup
|
|
start playerctld daemon
|
|
start picom --experimental-backends
|
|
start unclutter -noevents
|
|
start dunst
|
|
start dwmblocks
|
|
start remapd
|