dotfiles-mirror/local/bin/start_qtile.sh

38 lines
659 B
Bash
Raw Normal View History

2025-10-03 13:16:10 +03:30
#!/bin/sh
2025-10-08 07:26:05 +03:30
2025-10-03 13:16:10 +03:30
wlr-randr --output eDP-1 --off &
2025-10-08 07:26:05 +03:30
2025-10-09 13:36:10 +03:30
(
if ! pgrep -x foot >/dev/null; then
foot -s
fi
) &
(
if ! pgrep -x udiskie >/dev/null; then
/usr/bin/udiskie
fi
) &
2025-10-09 12:38:42 +03:30
2025-10-08 07:26:05 +03:30
2025-10-09 13:36:10 +03:30
(
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
) &
2025-10-08 07:26:05 +03:30
(
2025-10-09 13:36:10 +03:30
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
2025-10-08 07:26:05 +03:30
) &