mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +03:00
16 lines
283 B
Bash
16 lines
283 B
Bash
#!/bin/sh
|
|
# Copyright 2020 Antoine Fontaine
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# tiny wrapper that starts a notification dæmon (dunst)
|
|
# for the testsuite to talk to
|
|
|
|
dunst >/dev/null 2>&1 &
|
|
dunst_pid=$!
|
|
|
|
python3 test_notify2.py
|
|
success=$?
|
|
|
|
kill $dunst_pid
|
|
|
|
exit $success
|