diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-29 14:54:32 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-10-29 14:54:32 +0530 |
commit | 5ea230cb5abd01358e1d4038caa75d2b922b641d (patch) | |
tree | 0f85d18b0e03792d2943423194c873ef0a672c98 /.xprofile | |
parent | ac7159874861ec4ac7fd6ecb38e02ac542c5ce72 (diff) |
lots of minor tweaks
Diffstat (limited to '.xprofile')
-rwxr-xr-x | .xprofile | 18 |
1 files changed, 11 insertions, 7 deletions
@@ -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 |