Xfce Forum

Sub domains
 

You are not logged in.

#1 2019-08-16 18:11:59

nemodlenec
Member
From: Prague, CZ
Registered: 2019-01-18
Posts: 11

[SOLVED] xfce4-notifyd stopped working with an error message

I recently made the full switch from i3 to xfce and and notifications worked fine. Probably after the first reboot notifications stopped appearing and this error message pops up when I click the "Show Preview" in xfce4-notifyd-config:

GDBus.Error:org.freedesktop.DBus.Error.FileExists: Unit xfce4-notifyd.service failed to load properly: File exists.

I have tried deleting the contents of ~/.cache/sessions. I also have tried purging the program and reinstalling it to no avail. I'm currently using dunst as a remnant from i3, as that works fine.

Cheers.

Last edited by nemodlenec (2019-08-16 18:59:24)

Offline

#2 2019-08-16 18:31:59

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

What does the following return:

systemctl --user status xfce4-notifyd.service

Also, can you post back:

journalctl -b0 | grep notifyd

Here is a possibly related thread. In the end I had to ensure that I was sourcing the /etc/X11/xinit/xinitrc.d/50-systemd-user.sh file.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#3 2019-08-16 18:41:53

nemodlenec
Member
From: Prague, CZ
Registered: 2019-01-18
Posts: 11

Re: [SOLVED] xfce4-notifyd stopped working with an error message

The first returns

● xfce4-notifyd.service - XFCE notifications service
   Loaded: error (Reason: Unit xfce4-notifyd.service failed to load properly: File exists.)
   Active: inactive (dead)

The latter

Aug 15 19:52:53 rod systemd[775]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Aug 15 19:52:53 rod dbus-daemon[791]: [session uid=1000 pid=791] Activation via systemd failed for unit 'xfce4-notifyd.service': Unit xfce4-notifyd.service failed to load properly: File exists.
Aug 15 19:52:54 rod dbus-daemon[791]: [session uid=1000 pid=791] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.21' (uid=1000 pid=907 comm="volumeicon ")

It's these three messages repeated into oblivion.

The layman in me supposes it has something to do with having more notification daemons installed?

Offline

#4 2019-08-16 18:44:36

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Yes.

Aug 15 19:52:53 rod systemd[775]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.

Only one can have access to the dbus channel at any point in time. You'll need to disable the other service first and then restart this one.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#5 2019-08-16 18:57:22

nemodlenec
Member
From: Prague, CZ
Registered: 2019-01-18
Posts: 11

Re: [SOLVED] xfce4-notifyd stopped working with an error message

I disabled traces of any other notification service and xfce4 notifications now work! Thank you!

Offline

#6 2020-03-16 20:25:52

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Hi both, I have the same issue:
xfce4-notifyd.service failed to load properly: File exists
xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Notifications GUI from menu says: The notification service is not running. No notifications will be shown.
In Session and Startup, Application Autostart, I have
Indicator Application, /usr/lib/x86_64-linux-gnu/indicator-application/indicator-application-service
and
Indicator Messages, /usr/lib/x86_64-linux-gnu/indicator-messages/indicator-messages-service

Both were off, but I saw the error messages in var/log/syslog regardless.
All this to say:
Please could one of you let me (/others) know how to disable traces of other notification services, as nemodlenec did?
Thanks!

Offline

#7 2020-03-16 21:43:38

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

xfce4-notifyd.service failed to load properly: File exists
xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.

Run the following command:

dbus-send --session --print-reply --dest=org.freedesktop.DBus / org.freedesktop.DBus.GetConnectionUnixProcessID string:org.freedesktop.Notifications

...and it will return something like:

method return time=1584394891.261927 sender=org.freedesktop.DBus -> destination=:1.848 serial=3 reply_serial=2
   uint32 3885

The last number is the PID of the application that is holding the notification service open, so do a "ps -f" on it:

ps -ef | grep 2885

...to see what app it is.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#8 2020-03-16 22:02:29

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Thanks Toz, as always.
Did that exact command work for you? For me it returned:

Error org.freedesktop.DBus.Error.NameHasNoOwner: Could not get PID of name 'org.freedesktop.Notifications': no such name

Same with
org.freedesktop.notifications
org.freedesktop

Thanks again!

Offline

#9 2020-03-16 22:50:41

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Okay so nothing is running. Strange. What happens if you manually run "xfce4-notifyd"? Search for it on your computer, its somewhere in /lib and not in a regular path.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#10 2020-03-17 00:00:18

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

In terminal: xfce4-notifyd: command not found
Search found a file of that name in /usr/lib/x86_64-linux-gnu/xfce4/notifyd/
In terminal: /usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd: nothing happens, no return, no timeout. Weird.... could it be that this is the wrong file? Seems well named & placed... There's also:
/usr/share/dbus-1/services/org.xfce.xfce4-notifyd.Notifications.service

var log syslog shows other services are typing to use the notification system recently, so it's not just on bootup:

dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.126' (uid=1000 pid=28155 comm="/home/simon/.dropbox-dist/dropbox-lnx.x86_64-93.3." label="unconfined")
dbus-daemon[1600]: [session uid=1000 pid=1600] Activation via systemd failed for unit 'xfce4-notifyd.service': Unit xfce4-notifyd.service failed to load properly: File exists.
systemd[1574]: Failed to put bus name to hashmap: File exists
systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.

Thanks again for any ideas!

Offline

#11 2020-03-17 01:18:08

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

  1. Which distro and which version of Xfce are you using?
    .

  2. What does the following return?

    systemctl --user status xfce4-notifyd.service

    .

  3. How are you starting Xfce? Are you using a display manager like lightdm or just "startx"?
    .

  4. What is the contents of your ~/.config/autostart directory?
    .

  5. And finally, can you create a secondary user on your computer, login with that account, and run:

    notify-send test test

    ...to see what happens?


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#12 2020-03-17 01:20:02

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Sharky wrote:

In terminal: /usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd: nothing happens, no return, no timeout.

Also, do this again and then in another terminal run:

notify-send test test

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#13 2020-03-17 02:10:48

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Hiya,

1. Xubuntu 19.10, XFCE 4.14

2.
● xfce4-notifyd.service - XFCE notifications service
   Loaded: error (Reason: Unit xfce4-notifyd.service failed to load properly: Fi
   Active: inactive (dead)

Mar 16 13:13:17 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allo [ten identical lines like this]

Then loads of repeats of the above, with slowly growing number of characters at the end of each line until it's full:

● xfce4-notifyd.service - XFCE notifications service
   Loaded: error (Reason: Unit xfce4-notifyd.service failed to load properly: File exists.)
   Active: inactive (dead)

Mar 16 13:13:17 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.

3. Erm... just booting up? lightdm as xubuntu default.

4.
dropbox.desktop                 redshift-gtk.desktop
indicator-application.desktop  'Set Default Audio Sink.desktop'
indicator-messages.desktop      synology-cloud-station-drive-autostart.desktop
'Monitor Agon.desktop'           Thunar.desktop
Pygrid-1.desktop                urserver.desktop
Pygrid.desktop

I wonder if indicator-application & indicator-messages are causing the problem? Even though they're unticked in the Application Autostart GUI.

5. Will do in a bit yeah. If any of the above suggests anything to you in the meantime, please let me know.

Oh and also, do you have/share a paypal/venmo/etc? You're always so helpful, and at some point I've been meaning to ask the board about a hang/freeze problem I've been having and it occurs to me that it's likely to be you that answers, and I'd like to buy you a ruck of beers for your troubles.

Cheers!

Offline

#14 2020-03-17 02:17:33

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

ToZ wrote:

Also, do this again and then in another terminal run

I tried this and nothing returned but this was before the secondary user test.

Offline

#15 2020-03-17 11:20:35

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Sharky wrote:

Mar 16 13:13:17 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.

You have more than one notification service registered. Is KDE/Plasma also installed on your computer?
Can you post back the results of these commands:

ls /usr/share/dbus-1/services | grep -i notif
ps -ef | grep -E 'notif|dunst'
ToZ wrote:

Also, do this again and then in another terminal run

I tried this and nothing returned but this was before the secondary user test.

I mean, in one terminal window, run the command:

/usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd

...and in another terminal window (or tab) run:

notify-send test test

...to see if it works.

Oh and also, do you have/share a paypal/venmo/etc? You're always so helpful, and at some point I've been meaning to ask the board about a hang/freeze problem I've been having and it occurs to me that it's likely to be you that answers, and I'd like to buy you a ruck of beers for your troubles.

Thanks for the offer, but there is no need to do that. Instead, lets all take a look around and help those in need close to us during these trying times.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#16 2020-03-17 14:53:35

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Morning!

ls /usr/share/dbus-1/services | grep -i notif
org.xfce.xfce4-notifyd.Notifications.service

ps -ef | grep -E 'notif|dunst'
simon     1781  1766  0 07:45 ?        00:00:00 /usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 /usr/lib/x86_64-linux-gnu/xfce4/panel/plugins/libsystray.so 4 12582924 systray Notification Area Area where notification icons appear
simon     1924  1612  0 07:45 ?        00:00:00 update-notifier
simon     4427  4417  0 07:47 pts/1    00:00:00 grep --color=auto -E notif|dunst

Two terminals test: what I mean is: T1 returned nothing, but was waiting on a result which never came. Terminal 2 completed but nothing was produced. That was yesterday. Today the notify-send works, as do other notifications. So I'm not 100% sure what I/we have done which has fixed this, either temporarily or permanently, but it seems ok for now. Cheers!

Last edited by Sharky (2020-03-17 15:24:58)

Offline

#17 2020-03-17 14:55:33

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Ooh, ok, interesting. Notifications only work while the

/usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd

command is running. You're onto something there...

Offline

#18 2020-03-17 16:23:22

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

It looks like its not starting automatically like it should. Make sure the /usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd process isn't running, then run:

systemctl --user start xfce4-notifyd

...followed by a:

systemctl --user status xfce4-notifyd

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#19 2020-03-17 16:53:13

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

In task manager, I killed

systemctl --user status xfce4-notifyd

which also killed

pager

FWIW,

indicator-application/indicator-application-service
indicator-messages/indicator-messages-service

are both running. Then:

systemctl --user start xfce4-notifyd
Failed to start xfce4-notifyd.service: Unit xfce4-notifyd.service failed to load properly: File exists.
See user logs and 'systemctl --user status xfce4-notifyd.service' for details.

systemctl --user status xfce4-notifyd
● xfce4-notifyd.service - XFCE notifications service
   Loaded: error (Reason: Unit xfce4-notifyd.service failed to load properly: Fi
   Active: inactive (dead)

Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allo(etc) 

When running

/usr/lib/x86_64-linux-gnu/xfce4/notifyd/xfce4-notifyd

From terminal, "xfce4-notifyd" is present in task manager, as one might expect. And is killed and removed when its parent terminal instance is closed.

Do you think something's causing it to start twice? I don't know enough (/anything!) about indicator-application-service & indicator-messages-service but might they both call notifyd?

Cheers again

Offline

#20 2020-03-17 17:01:06

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Yes, something is causing it to start twice, or another notification daemon is also starting/running.

Can you post back the results of the following:

systemctl --user --no-pager status xfce4-notifyd

...and:

systemctl --no-pager status xfce4-notifyd

...and:

locate xfce4-notifyd.service

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#21 2020-03-17 17:07:10

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

systemctl --user --no-pager status xfce4-notifyd
● xfce4-notifyd.service - XFCE notifications service
   Loaded: error (Reason: Unit xfce4-notifyd.service failed to load properly: File exists.)
   Active: inactive (dead)

Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services…ion.
Hint: Some lines were ellipsized, use -l to show in full.
systemctl --no-pager status xfce4-notifyd
Unit xfce4-notifyd.service could not be found.
locate xfce4-notifyd.service
/usr/lib/systemd/user/xfce4-notifyd.service

thanks again

Offline

#22 2020-03-17 17:42:44

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Can you run this and post back the results?

sudo journalctl  | grep "org.freedesktop.Notifications" | tail -500

And one other thing to try. Restart your computer and before you log in, go to another virtual console (Ctrl+Alt+F2), log in as your user, and clear your sessions cache:

cd ~/.cache
rm -rf sessions

Then return to Virtual console 7 (Ctrl+Alt+F7) and log in and try running:

notify-send test test

...to see if you get a notification bubble.


Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

#23 2020-03-17 18:09:03

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

sudo journalctl  | grep "org.freedesktop.Notifications" | tail -500
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:22 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:22 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:23 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.52' (uid=1000 pid=1952 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:23 Poseidon systemd[1572]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:49 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.22' (uid=1000 pid=1760 comm="/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 " label="unconfined")
Mar 16 13:10:49 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:49 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.40' (uid=1000 pid=1909 comm="xfce4-power-manager " label="unconfined")
Mar 16 13:10:49 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:49 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:49 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:52 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.51' (uid=1000 pid=1942 comm="nm-applet " label="unconfined")
Mar 16 13:10:52 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:52 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.51' (uid=1000 pid=1942 comm="nm-applet " label="unconfined")
Mar 16 13:10:52 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:53 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.65' (uid=1000 pid=1982 comm="/home/simon/.dropbox-dist/dropbox-lnx.x86_64-93.3." label="unconfined")
Mar 16 13:10:53 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:10:55 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:10:55 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:03 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.68' (uid=1000 pid=2549 comm="/home/simon/.CloudStation/CloudStation.app/bin/clo" label="unconfined")
Mar 16 13:11:03 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:03 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.68' (uid=1000 pid=2549 comm="/home/simon/.CloudStation/CloudStation.app/bin/clo" label="unconfined")
Mar 16 13:11:03 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:09 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:09 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:10 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:10 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:10 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:10 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:10 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:10 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:10 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:10 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:10 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:10 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:10 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:10 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:11:15 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:11:15 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:12:13 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.68' (uid=1000 pid=2549 comm="/home/simon/.CloudStation/CloudStation.app/bin/clo" label="unconfined")
Mar 16 13:12:13 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:12:13 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.68' (uid=1000 pid=2549 comm="/home/simon/.CloudStation/CloudStation.app/bin/clo" label="unconfined")
Mar 16 13:12:13 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:12:48 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.15' (uid=1000 pid=1742 comm="xfsettingsd " label="unconfined")
Mar 16 13:12:48 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:12:48 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.15' (uid=1000 pid=1742 comm="xfsettingsd " label="unconfined")
Mar 16 13:12:48 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:13:17 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:16:38 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.71' (uid=1000 pid=2627 comm="/usr/lib/firefox/firefox " label="unconfined")
Mar 16 13:16:38 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:19:37 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.84' (uid=1000 pid=3600 comm="notify-send test test " label="unconfined")
Mar 16 13:19:37 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:19:37 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.85' (uid=1000 pid=3600 comm="notify-send test test " label="unconfined")
Mar 16 13:19:37 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:19:44 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:20:02 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 13:49:01 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1960 comm="xfce4-volumed " label="unconfined")
Mar 16 13:49:01 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 15:34:16 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.126' (uid=1000 pid=28155 comm="/home/simon/.dropbox-dist/dropbox-lnx.x86_64-93.3." label="unconfined")
Mar 16 15:34:16 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 16:30:12 Poseidon dbus-daemon[1600]: [session uid=1000 pid=1600] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.126' (uid=1000 pid=28155 comm="/home/simon/.dropbox-dist/dropbox-lnx.x86_64-93.3." label="unconfined")
Mar 16 16:30:12 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 16 18:21:41 Poseidon systemd[1574]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:32 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.22' (uid=1000 pid=1782 comm="/usr/lib/x86_64-linux-gnu/xfce4/panel/wrapper-2.0 " label="unconfined")
Mar 17 06:45:32 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:32 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.39' (uid=1000 pid=1925 comm="xfce4-power-manager " label="unconfined")
Mar 17 06:45:32 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:32 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 06:45:32 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:36 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.64' (uid=1000 pid=2001 comm="/home/simon/.dropbox-dist/dropbox-lnx.x86_64-93.3." label="unconfined")
Mar 17 06:45:36 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:37 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.51' (uid=1000 pid=1959 comm="nm-applet " label="unconfined")
Mar 17 06:45:37 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:37 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.51' (uid=1000 pid=1959 comm="nm-applet " label="unconfined")
Mar 17 06:45:37 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:46 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.67' (uid=1000 pid=3383 comm="/home/simon/.CloudStation/CloudStation.app/bin/clo" label="unconfined")
Mar 17 06:45:46 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 06:45:46 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.67' (uid=1000 pid=3383 comm="/home/simon/.CloudStation/CloudStation.app/bin/clo" label="unconfined")
Mar 17 06:45:46 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:46:36 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.69' (uid=1000 pid=3603 comm="/usr/lib/firefox/firefox " label="unconfined")
Mar 17 07:46:36 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:52 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:52 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:52 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:52 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:52 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:52 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:53 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:53 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:54 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:54 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:55 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:55 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:56 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:56 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:56 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:56 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:56 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:56 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:56 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:56 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:57 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:57 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:53:57 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 07:53:57 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:54:06 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.80' (uid=1000 pid=5022 comm="notify-send test test " label="unconfined")
Mar 17 07:54:06 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 07:54:06 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.81' (uid=1000 pid=5022 comm="notify-send test test " label="unconfined")
Mar 17 07:54:06 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:42:09 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:42:42 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:43:02 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:43:20 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:04 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:04 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:05 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:47:05 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:23 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:47:58 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:49 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:49 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 09:48:50 Poseidon dbus-daemon[1623]: [session uid=1000 pid=1623] Activating via systemd: service name='org.freedesktop.Notifications' unit='xfce4-notifyd.service' requested by ':1.53' (uid=1000 pid=1979 comm="xfce4-volumed " label="unconfined")
Mar 17 09:48:50 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.
Mar 17 10:05:19 Poseidon systemd[1597]: xfce4-notifyd.service: Two services allocated for the same bus name org.freedesktop.Notifications, refusing operation.

Manually deleted contents of sessions before rebooting & trying the virtual console approach.

Offline

#24 2020-03-17 18:19:34

Sharky
Member
Registered: 2014-08-16
Posts: 48

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Rebooted, no login popup on my setup so just tried 'notify-send test test' and no notification appeared. Session cache is empty still. Not sure if this would produce the same result as the virtual console approach, however...?

Offline

#25 2020-03-17 19:48:32

ToZ
Administrator
From: Canada
Registered: 2011-06-02
Posts: 10,948

Re: [SOLVED] xfce4-notifyd stopped working with an error message

Sharky wrote:

FWIW,

indicator-application/indicator-application-service
indicator-messages/indicator-messages-service

are both running.

Can you kill both of those processes then run:

systemctl --user start xfce4-notifyd.service

...and:

systemctl --user status xfce4-notifyd.service

...and:

notify-send test test

And also, can you post back the results of:

fgrep -ri notif /usr/share/dbus-1/services/*

Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki  |  Community | Contribute ---

Offline

Board footer

Powered by FluxBB