ckb-next doesn't get added to tray #430
-
Describe the bug https://github.com/ckb-next/ckb-next When starting
ckb-next haven't got an updates in over a year ago but this issue only started happening since around a month or less (don't remember exactly). I think dinit is at fault here. ckb-next-daemon (required for ckb-next, need to be run as root): type = process
command = /usr/bin/ckb-next-daemon
restart = true
log-type = buffer ckb-next.service (this causing issue): type = process
command = /usr/bin/ckb-next --background
restart = true Expected behavior Add tray item same way it does when run manually in terminal |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi. You probably have an issue about dependency ordering. I think the problem is that the Looks like the expected way of running You have these options:
|
Beta Was this translation helpful? Give feedback.
Hi.
You probably have an issue about dependency ordering. I think the problem is that the
ckb-next --background
is loaded before the desktop environment is actually boot up.Looks like the expected way of running
ckb-next --background
is to running it as part of desktop environment autostart (ref).You have these options:
sleep $time
).$DISPLAY
) for triggering something likedesktop.target
(Probably not useful because the DE may not be ready for system tray items at that time).