From 28ebfb3af5ac99129fbb1037c26312063b7dbb0b Mon Sep 17 00:00:00 2001 From: Thomas Preisner Date: Tue, 11 Jun 2019 22:47:33 +0200 Subject: [PATCH] config: herbstluftwm: autostart: start dunst for notifications --- config/herbstluftwm/autostart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/herbstluftwm/autostart b/config/herbstluftwm/autostart index e4ee7b3..e8ac2e7 100755 --- a/config/herbstluftwm/autostart +++ b/config/herbstluftwm/autostart @@ -211,6 +211,10 @@ herbstclient set tree_style '╾│ ├└╼─┐' pids+=( $! ) done + # start dunst (notification tool) + dunst & + pids+=( $! ) + # start nm-applet (network-manager) nm-applet & pids+=( $! )