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

Compare commits

...

2 Commits

Author SHA1 Message Date
cc094c591c xorg: use basic dwm start 2023-12-11 01:24:16 +01:00
b1029daeb5 nvim: added python settings 2023-12-10 17:40:19 +01:00
2 changed files with 5 additions and 12 deletions

View File

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

View File

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