resetting repo

This commit is contained in:
2025-08-13 22:57:57 +02:00
parent 4e2c481910
commit c113c75fd2
42538 changed files with 142998 additions and 2142 deletions

View File

@@ -0,0 +1,17 @@
mkdir SDtemp
copy *@2x*.png SDtemp
mogrify -format png -resize 50%% SDtemp/*@2x*.png
pushd SDtemp
setlocal enableDelayedExpansion
for %%a in (*.png) do (
set "filename=%%~nxa"
set "purged_filename=!filename:@2x=!"
ren %%~nxa !purged_filename!
)
endlocal
move *.png ..
popd
rmdir /s /q SDtemp