mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2024-12-22 18:55:33 +00:00
Created mkbsd.bat, to download all the wallpapers in a single click.
Just clone the repository by typing: git clone https://github.com/nadimkobeissi/mkbsd in terminal/cmd go to repo location on file manager double click on mkbsd.txt and boom all wallpapers downloaded
This commit is contained in:
parent
82e50c64f0
commit
41d4596431
30
mkbsd.bat
Normal file
30
mkbsd.bat
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
@echo off
|
||||||
|
:: Ensure the script runs in the directory where it's located
|
||||||
|
cd /d %~dp0
|
||||||
|
|
||||||
|
:: Check if Python is installed
|
||||||
|
python --version >nul 2>&1
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo Python is not installed. Please install Python and try again.
|
||||||
|
pause
|
||||||
|
exit /b
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Check if aiohttp is installed
|
||||||
|
pip show aiohttp >nul 2>&1
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
echo Installing aiohttp package...
|
||||||
|
pip install aiohttp
|
||||||
|
)
|
||||||
|
|
||||||
|
:: Run the Python script mkbsd.py
|
||||||
|
echo Running mkbsd.py...
|
||||||
|
python mkbsd.py
|
||||||
|
|
||||||
|
:: Wait for a few seconds to ensure all processes complete
|
||||||
|
echo Waiting for the process to finish...
|
||||||
|
timeout /t 5 /nobreak >nul
|
||||||
|
|
||||||
|
:: Notify user
|
||||||
|
echo All wallpapers are now in the newly created downloads subfolder.
|
||||||
|
pause
|
Loading…
Reference in a new issue