diff options
| author | coasteen <coasteen@proton.me> | 2026-07-09 10:42:28 +0330 |
|---|---|---|
| committer | coasteen <coasteen@proton.me> | 2026-07-09 10:42:28 +0330 |
| commit | 8cbadb61604667b407b53ee1258433994fa4765a (patch) | |
| tree | 97765fb29418fd6278fcb4cbb9760893afaf7a58 /local/bin/start_qtile.sh | |
Diffstat (limited to 'local/bin/start_qtile.sh')
| -rwxr-xr-x | local/bin/start_qtile.sh | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/local/bin/start_qtile.sh b/local/bin/start_qtile.sh new file mode 100755 index 0000000..0b4758f --- /dev/null +++ b/local/bin/start_qtile.sh @@ -0,0 +1,39 @@ +#!/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/landscapes/1685466762541384.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 + eww daemon & + eww open-many year month day & + else + pkill eww + eww daemon & + eww open-many year month day & + fi +) & |
