9 lines
183 B
Bash
Executable file
9 lines
183 B
Bash
Executable file
#!/bin/sh
|
|
rm -rf "/run/user/$(id -u)/pulse"
|
|
exec chpst -e "$TURNSTILE_ENV_DIR" sh -c '
|
|
test -n "$DBUS_SESSION_BUS_ADDRESS" || {
|
|
>&2 echo "dbus not running"
|
|
exit 1
|
|
}
|
|
exec pipewire
|
|
'
|