diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-11 17:51:04 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-11 17:51:04 +0530 |
commit | 3dfaaa08d51418f0aaf5899e72449e8362e49a38 (patch) | |
tree | e88162fb857d08f35f5572dbe103186a949d0c59 /.xinitrc | |
parent | d31e8e26d0762cbd53f1ec3f5b9392fdbd94b4e6 (diff) |
fix .Xmodmap
Diffstat (limited to '.xinitrc')
-rwxr-xr-x | .xinitrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |