Last active
August 17, 2024 01:41
-
-
Save OutOfThisPlanet/8db05c04804130244aaf9d60d7ef1db2 to your computer and use it in GitHub Desktop.
Download day / night image from timeanddate.com to set as desktop background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Invoke-WebRequest -UseBasicParsing -Uri "https://www.timeanddate.com/scripts/sunmap.php?iso=$(Get-Date -Format yyMMddThhmm)&earth=1" | | |
Select-Object -Expand Content | | |
Set-Content -Path 'TEMP.jpg' -AsByteStream -Force | |
Copy-Item -Path 'TEMP.jpg' -Destination 'SetThisAsDesktopPicture.jpg' -Force | |
#Manually set your desktop background to 'SetThisAsDesktopPicture.jpg' | |
#Set scheduled task / cron job to make this run every minute. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment