dotfiles-mirror/local/bin/start_qtile.sh

40 lines
676 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
2025-10-11 13:28:35 +03:30
swaybg -i "/home/coast/.local/src/wall/landscapes/1685466762541384.jpg" &
2025-10-09 13:36:10 +03:30
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
eww daemon &
2025-10-11 13:28:35 +03:30
eww open-many year month day &
else
pkill eww
eww daemon &
2025-10-09 13:36:10 +03:30
eww open-many year month day &
fi
2025-10-08 07:26:05 +03:30
) &