aboutsummaryrefslogtreecommitdiff
path: root/.xprofile
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-10-29 14:54:32 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-10-29 14:54:32 +0530
commit5ea230cb5abd01358e1d4038caa75d2b922b641d (patch)
tree0f85d18b0e03792d2943423194c873ef0a672c98 /.xprofile
parentac7159874861ec4ac7fd6ecb38e02ac542c5ce72 (diff)
lots of minor tweaks
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