switch to dwm, see my fork

This commit is contained in:
Felix Van der Jeugt 2016-07-14 23:41:22 +02:00
parent 22a66fbf8b
commit 787da75f87
3 changed files with 18 additions and 2 deletions

View File

@ -3,3 +3,4 @@
ctags
readtags
html2text
dwm

6
local/bin/dwmdb Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
while checksum=$(sha1sum $(which dwm)) && [ "$checksum" != "$prev_checksum" ]
do
prev_checksum="$checksum"
dwm
done

13
xinitrc
View File

@ -31,6 +31,14 @@ if [ -d /etc/X11/xinit/xinitrc.d ] ; then
unset f
fi
# My lovely bar
bar() {
while sleep 1; do
xsetroot -name "$(date +'%a %d %b, %I:%M')"
done
}
# Forking graphical programs
forklog() {
$* 2>&1 | logger &
@ -40,9 +48,10 @@ forklog xcape -t 100 -e 'Super_L=Scroll_Lock;Shift_L=Escape'
forklog sh ~/.fehbg
forklog xautolock -time 1 -locker xsecurelock
forklog xset dpms 0 0 50 s off
forklog yabar
forklog bar
# forklog yabar
#forklog sxhkd -c ~/.config/sxhkd/sxhkd.conf
#exec nwm
exec xmonad
exec dwmdb