17 lines
295 B
Bash
17 lines
295 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "[INFO] Starting fake org.freedesktop.Notifications service..."
|
|
|
|
python3 start-notification-service.py &
|
|
SERVICE_PID=$!
|
|
|
|
sleep 1
|
|
|
|
gdbus introspect \
|
|
--session \
|
|
--dest org.freedesktop.Notifications \
|
|
--object-path /org/freedesktop/Notifications
|
|
|
|
wait $SERVICE_PID
|