# HG changeset patch # User Steve Losh # Date 1532532576 0 # Node ID 36b1fd1bcdbd21da519db960ea3249cee128fa93 # Parent 789407c01a1ca2261616662e82167c5d7a3e9e3e Dont run things multiple times diff -r 789407c01a1c -r 36b1fd1bcdbd stumpwmrc --- a/stumpwmrc Wed Jul 25 05:07:30 2018 +0000 +++ b/stumpwmrc Wed Jul 25 15:29:36 2018 +0000 @@ -354,6 +354,12 @@ (load-module "stumptray") (run-commands "stumptray") -(run-shell-command "nm-applet --sm-disable") -(run-shell-command "~/.dropbox-dist/dropboxd") -(run-shell-command "/usr/bin/dunst -conf ~/.dunstrc") +;;;; Startup ------------------------------------------------------------------ +(defparameter *network-manager* + (run-shell-command "nm-applet --sm-disable")) + +(defparameter *dropbox* + (run-shell-command "~/.dropbox-dist/dropboxd")) + +(defparameter *dunst* + (run-shell-command "/usr/bin/dunst -conf ~/.dunstrc"))