19 lines
446 B
Bash
Executable file
19 lines
446 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 syncthingtray
|
|
start system-config-printer-applet
|
|
start "$HOME/.local/libexec/daemons/remapd"
|
|
start env PATH="$HOME/.local/libexec/statusbar:$PATH" dwmblocks
|