aboutsummaryrefslogtreecommitdiff
path: root/.xinitrc
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-11 17:51:04 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-11 17:51:04 +0530
commit3dfaaa08d51418f0aaf5899e72449e8362e49a38 (patch)
treee88162fb857d08f35f5572dbe103186a949d0c59 /.xinitrc
parentd31e8e26d0762cbd53f1ec3f5b9392fdbd94b4e6 (diff)
fix .Xmodmap
Diffstat (limited to '.xinitrc')
-rwxr-xr-x.xinitrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/.xinitrc b/.xinitrc
index 02a1d82..af926dd 100755
--- a/.xinitrc
+++ b/.xinitrc
@@ -24,11 +24,12 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
unset f
fi
+lxsession&
nitrogen --restore &
picom &
dunst &
cbatticon &
-#xmodmap .Xmodmap
+[[ -f ~/.Xmodmap ]] && xmodmap .Xmodmap
# launch this from wm or it'll crash
# polybar mybar &
@@ -40,5 +41,6 @@ case $1 in
bspwm) exec bspwm ;;
herbstluftwm) exec herbstluftwm ;;
spectrwm) exec spectrwm ;;
+ dwm) exec dwm ;;
*) exec xmonad ;;
esac