aboutsummaryrefslogtreecommitdiff
path: root/.xprofile
diff options
context:
space:
mode:
Diffstat (limited to '.xprofile')
-rwxr-xr-x.xprofile18
1 files changed, 11 insertions, 7 deletions
diff --git a/.xprofile b/.xprofile
index 1e7151f..3a137fe 100755
--- a/.xprofile
+++ b/.xprofile
@@ -14,18 +14,22 @@ emacs --daemon &
mpd &
#virtual_mic.sh &
-# autostart apps for xmonad
-if [[ $DESKTOP_SESSION = "xmonad" ]]; then
+# autostart apps for both xmonad and dwm
+if [[ "$DESKTOP_SESSION" = "xmonad" || "$DESKTOP_SESSION" = "dwm" ]]; then
screensetup.sh
# autostart apps
nitrogen --restore &
picom &
- dunst &
- udiskie &
- nm-applet &
- blueman-applet &
- polystart &
+ #dunst &
+ #udiskie &
# glava -dm radial &
fi
+
+# autostart apps just for xmonad
+if [[ "$DESKTOP_SESSION" = "xmonad" ]]; then
+ polystart &
+ nm-applet &
+ blueman-applet &
+fi