From a293ea619497b7a169005821c3514ce2abcceff6 Mon Sep 17 00:00:00 2001 From: Harm te Molder Date: Thu, 10 Sep 2020 17:59:33 +0000 Subject: [PATCH] Add the final step to get the daemon to run on macOS --- DBus-service.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/DBus-service.md b/DBus-service.md index 3e438c7..38e35c5 100644 --- a/DBus-service.md +++ b/DBus-service.md @@ -88,4 +88,15 @@ my $reactor=Net::DBus::Reactor->main(); $reactor->run(); exit 0; -``` \ No newline at end of file +``` + +### `dbus` on macOS + +To get the daemon to run properly on macOS (10.15.6) I had to install `dbus` (available on [Homebrew](https://brew.sh/)): + +```shell +brew install dbus +brew services start dbus +``` + +Then restart. \ No newline at end of file