move notification daemon command into confgen

This commit is contained in:
LordMZTE 2023-06-02 16:29:00 +02:00
parent 8ed2d27ca8
commit 8e72b3ab93
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6
2 changed files with 5 additions and 2 deletions

View file

@ -221,8 +221,10 @@ exec picom -f -i 1 -c
# conky
exec conky
# wired notification daemon
exec wired
<! if opt.commands.notification_daemon then !>
# notification daemon
exec <% opt.commands.notification_daemon %>
<! end !>
<! if opt.commands.file_manager_daemon then !>
# start file manager daemon

View file

@ -29,6 +29,7 @@ opts.commands = {
file_manager_daemon = "thunar --daemon",
-- zenity-compatible dialoger
zenity = "yad",
notification_daemon = "wired",
}
return opts