diff options
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 |