2023-05-24 16:53:44 +02:00
|
|
|
#!/bin/sh
|
2023-12-15 10:16:45 +01:00
|
|
|
# shellcheck disable=SC2068,SC2086
|
2023-02-07 17:08:27 +01:00
|
|
|
|
2023-02-07 17:19:53 +01:00
|
|
|
start() {
|
2023-06-21 10:07:21 +02:00
|
|
|
pidof -sx $1 || $@ &
|
2023-02-07 17:08:27 +01:00
|
|
|
}
|
|
|
|
|
2023-12-14 17:14:43 +01:00
|
|
|
start xwallpaper --zoom "${XDG_DATA_HOME:-$HOME/.local/share}/bg"
|
2024-01-02 20:57:49 +01:00
|
|
|
start pipewire
|
2023-07-14 17:59:32 +02:00
|
|
|
start remaps -qd
|
2023-05-24 16:53:44 +02:00
|
|
|
start checkup
|
2024-01-02 20:57:49 +01:00
|
|
|
start playerctld daemon
|
2023-12-11 19:14:58 +01:00
|
|
|
start picom --experimental-backends
|
2023-02-20 12:22:40 +01:00
|
|
|
start unclutter -noevents
|
2023-02-07 17:08:27 +01:00
|
|
|
start dunst
|
|
|
|
start dwmblocks
|
2023-12-14 09:44:00 +01:00
|
|
|
start remapd
|