diff --git a/.chezmoi.yaml.tmpl b/.chezmoi.yaml.tmpl index f247ab5..2ce848f 100644 --- a/.chezmoi.yaml.tmpl +++ b/.chezmoi.yaml.tmpl @@ -20,6 +20,7 @@ data: optimus: {{ and $laptop (promptBool "optimus" false) }} virtualbox: {{ and $desktop (promptBool "virtualbox" false) }} xsane: {{ and $desktop (promptBool "xsane" false) }} + networkmanager: {{ and $desktop (promptBool "networkmanager" false) }} vpn: {{ and $desktop (promptBool "vpn" false) }} seafile: {{ and $desktop (promptBool "seafile" false) }} activitywatch: {{ and $desktop (promptBool "activitywatch" false) }} diff --git a/dot_config/X11/xinitrc.tmpl b/dot_config/X11/xinitrc.tmpl index 96bf81c..f9a116a 100644 --- a/dot_config/X11/xinitrc.tmpl +++ b/dot_config/X11/xinitrc.tmpl @@ -34,6 +34,9 @@ emacs-start & {{ if .features.seafile -}} seafile-applet > /dev/null 2>&1 & {{- end }} +{{ if .features.networkmanager -}} +nm-applet > /dev/null 2>&1 & +{{- end }} {{ if .features.activitywatch -}} aw-server > /dev/null 2>&1 & aw-watcher-window > /dev/null 2>&1 &