-
-
Save AdamMaras/99bf7a437b0843dd3cbb996f4ecea076 to your computer and use it in GitHub Desktop.
A weekly task that pops up https://github.com/trending in Chrome to find interesting OSS projects.
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
Register-ScheduledTask ` | |
-Action (New-ScheduledTaskAction ` | |
-Execute ((Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\chrome.exe")."(default)") ` | |
-Argument 'https://github.com/trending') ` | |
-Trigger (New-ScheduledTaskTrigger -Weekly -DaysOfWeek Monday -At 3am) ` | |
-TaskName "GitHub Trending" ` | |
-Description "Weekly check of GitHub trending repos." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment