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

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