This repository is dedicated to storing daily wallpapers from Bing, specifically the US version. The wallpapers are sourced from Bing's daily homepage background images.
.
├── .github
│ └── workflows
│ └── download.yml
├── src
│ └── index.ts
├── static
│ └── <date>-preview.jpg
├── .gitignore
├── README.md
├── package.json
├── tsconfig.json
└── yarn.lock
.github/workflows/download.yml
: GitHub Actions workflow file for scheduling and automating the wallpaper download and repository updates from Bing.src/index.ts
: Main source code for the wallpaper scraper.static
: Folder for storing downloaded wallpaper preview images..gitignore
: Git ignore file configuration.README.md
: Project description file.package.json
: Project dependencies and related configurations.tsconfig.json
: TypeScript configuration file.yarn.lock
: Yarn lock file to ensure stable dependency versions.
-
Clone this repository:
git clone https://github.com/your_username/wallpaper-US.git
-
Install dependencies:
cd wallpaper-US yarn install
-
Run the scraper:
yarn start
-
After execution, the downloaded wallpapers will be saved in the
static
directory.
This project is licensed under the MIT License.