Install
openclaw skills install bing-wallpaperUse when users need to fetch the daily Bing wallpaper.
openclaw skills install bing-wallpaperThis skill helps AI agents fetch the daily Bing wallpaper from the 60s API, which provides the latest Bing homepage background image.
Use this skill when users:
Execute the associated scripts/wallpaper.sh script to fetch the Bing wallpaper.
./scripts/wallpaper.sh [encoding]
--encoding, -e <format>: Optional. Specifies the output response format. Valid options are text, json, image, and markdown.The script securely calls the 60s Bing wallpaper API and outputs the response to stdout. Depending on the encoding parameter, the response could be a JSON string, plain text, markdown, or binary image data.
# Get Bing wallpaper using default API encoding
./scripts/wallpaper.sh
# Get Bing wallpaper in JSON format
./scripts/wallpaper.sh --encoding json
# Get Bing wallpaper in plain text format (simplified usage)
./scripts/wallpaper.sh text
# Get Bing wallpaper in markdown format
./scripts/wallpaper.sh -e markdown
# Get Bing wallpaper as an image
./scripts/wallpaper.sh image
The return values differ based on the encoding parameter:
Default & Recommended (--encoding markdown)
Just the Link (--encoding text)
Structured Data (--encoding json)
Direct Image (--encoding image)