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