mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
37 lines
659 B
Bash
Executable file
37 lines
659 B
Bash
Executable file
#!/bin/sh
|
|
|
|
wlr-randr --output eDP-1 --off &
|
|
|
|
(
|
|
if ! pgrep -x foot >/dev/null; then
|
|
foot -s
|
|
fi
|
|
) &
|
|
|
|
(
|
|
if ! pgrep -x udiskie >/dev/null; then
|
|
/usr/bin/udiskie
|
|
fi
|
|
) &
|
|
|
|
|
|
(
|
|
if ! pgrep -x swaybg >/dev/null; then
|
|
swaybg -i "/home/coast/.local/src/wall/art/517525ldsdl.jpg" &
|
|
fi
|
|
) &
|
|
|
|
(
|
|
if ! pgrep -x polkit-gnome-authentication-agent >/dev/null; then
|
|
/usr/libexec/polkit-gnome-authentication-agent-1
|
|
fi
|
|
) &
|
|
|
|
(
|
|
if ! pgrep -x eww >/dev/null; then
|
|
pkill eww &
|
|
eww daemon &
|
|
while ! eww ping >/dev/null 2>&1; do sleep 0.1; done &
|
|
eww open-many year month day &
|
|
fi
|
|
) &
|