1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-04-19 16:27:45 +02:00

Compare commits

..

No commits in common. "cc094c591c6b017cc5f348881c4f7c45e776306e" and "8c19b7697ce4b8aa9d4e91594914371a0fc595f8" have entirely different histories.

2 changed files with 12 additions and 5 deletions

View File

@ -1,3 +0,0 @@
vim.o.shiftwidth = 2
vim.o.softtabstop = 2
vim.o.textwidth = 100

View File

@ -11,5 +11,15 @@ setbg
csum="" csum=""
new_csum=$(sha1sum $(which dwm)) new_csum=$(sha1sum $(which dwm))
while true
exec dwm do
if [ "$csum" != "$new_csum" ]
then
csum=$new_csum
dwm
else
exit 0
fi
new_csum=$(sha1sum $(which dwm))
sleep 0.5
done