mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
12 lines
234 B
Bash
Executable File
12 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
|
|
autostart="pipewire pipewire-pulse wireplumber flameshot"
|
|
|
|
for program in $autostart; do
|
|
pidof -s "$program" || "$program" &
|
|
done >/dev/null 2>&1
|
|
|
|
numlockx on &
|
|
|
|
exec dbus-launch --sh-syntax --exit-with-session awesome
|