garberw
garberw
I could not figure out "systemd edit --full dunst.service" so I manually edited as follows then rebooted garberw@electron> cd /usr/lib/systemd/user garberw@electron> ls dunst.service* dunst.service dunst.service.garberw.orig garberw@electron> cat dunst.service [Unit] Description=Dunst...
that did not fix it either. dunst still appears in log before X11 I think.
yes !!!! I updated by cd /usr/lib/systemd/user/ mv dunst.service dunst.service.disabled systemctl daemon-reloadand created a desktop envoironment (gnome or mate or kde etc.) autostart-on-login file. This works and you can use...
My mistake. A former install left this "systemd --user" file lying around. Removing it removed this bug. In the end I left the (non-user) systemd service as the means of...
from journalctl -b you can see that the service for dunst is started before the xserver, so no wonder it can not open the display: ......... did you write the...
yes thank you did not know how to mark resolved. not a frequent blogger yet.
think it is fixed in fedora 40.
``` root@electron# FOUND_VMLINUZ=$(ls -v /boot/vm[l0-9]* 2> /dev/null | grep -v '\-rescue-' | tail -1) root@electron# echo $FOUND_VMLINUZ /boot/vmlinuz-6.9.11-200.fc40.x86_64 ``` the solution is that you need `grep -v '\-rescue-'` and not...
$ journalctl -b -p4 --no-pager | grep --color=always -v "/usr/libexec/gdm-x-session" | less -R it is still possible to filter using pipe into grep but this sacrifices the color output because...