diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-27 21:53:51 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-27 21:59:12 +0300 |
commit | d4eeeb75d02871b2f53dee91dc4432e64bdcb75f (patch) | |
tree | b3fb289cb66cf3b709bc4f6b0e276d4321203eda | |
parent | 9dd957cd58734f08e8ed49d6103eabccff5cd2c9 (diff) | |
download | dotfiles-d4eeeb75d02871b2f53dee91dc4432e64bdcb75f.tar.gz |
feat(dwm)!: switch to dwm from i3
-rw-r--r-- | .vifm/vifmrc | 5 | ||||
-rw-r--r-- | .xinitrc | 21 |
2 files changed, 13 insertions, 13 deletions
diff --git a/.vifm/vifmrc b/.vifm/vifmrc index ede7b2a..b205476 100644 --- a/.vifm/vifmrc +++ b/.vifm/vifmrc @@ -143,11 +143,6 @@ command! vgrep vim "+grep %a" command! reload :write | restart command! w :!tmuxinator start -p=$HOME/.config/tmuxinator/.template.yml name=%c root=%d/%c -" Swallows -filextype *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm,*.webp swallow sxiv %f -filextype *.mp4,*.webm swallow mpv %f -filextype *.pdf swallow zathura %f - " ------------------------------------------------------------------------------ " The file type is for the default programs to be used with @@ -31,11 +31,16 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then fi # increase keyboard speed -xset r rate 250 22 - -# change bell sound -xset b 5 150 300 - -# start i3 window manager -exec i3 - +xset r rate 250 50 + +exec tmuxinator start admin & +exec redshift -P & +exec picom -c -i 1.0 -D 0 -r 12 & +exec hsetroot -cover ~/Pictures/wallpaper.jpg & +exec sxhkd & +exec dwmblocks & + +# Start dwm with restart behaviour +while true; do + dwm >/dev/null 2>&1 +done |