9 lines
105 B
Bash
Executable file
9 lines
105 B
Bash
Executable file
#!/bin/sh
|
|
|
|
while ! pgrep '^gdm$'; do
|
|
echo "GDM not running yet."
|
|
sleep 2
|
|
done
|
|
|
|
exec 2>&1
|
|
exec pipewire
|