20 lines
367 B
Bash
Executable File
20 lines
367 B
Bash
Executable File
#!/bin/sh
|
|
# shellcheck disable=SC2068,SC2086
|
|
|
|
start() {
|
|
pidof -sx $1 || $@ >"${HOME}/.local/log/${1}.log" 2>&1 &
|
|
}
|
|
|
|
start xwallpaper --zoom "${XDG_DATA_HOME}/bg"
|
|
start pipewire
|
|
start remaps -qd
|
|
start checkup
|
|
start playerctld daemon
|
|
start picom
|
|
start unclutter -noevents
|
|
start dunst
|
|
start dwmblocks
|
|
start remapd
|
|
start syncthingtray
|
|
start system-config-printer-applet
|