{"id":20644955,"url":"https://github.com/stchan/stopsnooze","last_synced_at":"2026-05-15T04:32:12.932Z","repository":{"id":63935913,"uuid":"490507700","full_name":"stchan/StopSnooze","owner":"stchan","description":"Console app that stops Windows from sleeping","archived":false,"fork":false,"pushed_at":"2025-11-20T03:54:12.000Z","size":303,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-20T05:29:59.736Z","etag":null,"topics":["power","powermanagement","sleep","windows"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stchan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-05-10T01:59:54.000Z","updated_at":"2025-11-20T03:54:15.000Z","dependencies_parsed_at":"2024-11-16T16:18:34.953Z","dependency_job_id":"b4201ef8-4f21-4d4e-a654-95c2579e88b1","html_url":"https://github.com/stchan/StopSnooze","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/stchan/StopSnooze","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stchan%2FStopSnooze","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stchan%2FStopSnooze/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stchan%2FStopSnooze/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stchan%2FStopSnooze/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stchan","download_url":"https://codeload.github.com/stchan/StopSnooze/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stchan%2FStopSnooze/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33053726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-15T02:00:06.351Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["power","powermanagement","sleep","windows"],"created_at":"2024-11-16T16:18:10.490Z","updated_at":"2026-05-15T04:32:12.927Z","avatar_url":"https://github.com/stchan.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ci\u003e**StopSnooze**\u003c/i\u003e is a console application which prevents Windows from sleeping.\r\n\r\n**Requirements**\u003cbr/\u003e\r\nWindows OS with .NET 8.0 support.\r\n\r\n**Binaries**\u003cbr/\u003e\r\nCheck the [releases](https://github.com/stchan/StopSnooze/releases) page for prebuilt executables.\r\n\r\n**License**\u003cbr/\u003e\r\nStopSnooze is GPLv3.\r\n\r\n**Usage:**\r\n```\r\n    StopSnooze [-d] [{-p PID | -x COMMAND}] [-w TIME]\r\n```\r\n    Options:\r\n\r\n        -d, --display   Allows the display to sleep\r\n        -p, --pid       Wait on process. Mutually exclusive with -x\r\n        -x, --shx       Execute command, then wait on spawned process. \r\n                        Mutually exclusive with -p\r\n        -w, --wait      Wait for specified number of seconds\r\n\r\n**Examples:**\r\n```\r\n    StopSnooze -w 60\r\n```\r\nPrevents sleep for 60 seconds.\r\n```\r\n    StopSnooze -p 2942\r\n```\r\nPrevents sleep while process with PID 2942 is running.\r\n```\r\n    StopSnooze -p 2942 -w 60\r\n```\r\nPrevents sleep while process with PID 2942 is running, or for up to 60 seconds, whichever is shorter.\r\n```\r\n    StopSnooze -x \"notepad.exe\"\r\n```\r\nStarts \"notepad.exe\", and prevents sleep while it is running.\r\n```\r\n    StopSnooze -x \"notepad.exe\" -w 60\r\n```\r\nStarts \"notepad.exe\", and prevents sleep while it is running, or for up to 60 seconds, whichever is shorter.\r\n```\r\n    StopSnooze -x \"cmd /k\"\r\n```\r\nStarts a new shell, and prevents sleep until it exits.\r\n```\r\n    StopSnooze\r\n```\r\nPrevents sleep until the user presses any key, or terminates the shell.\r\n```\r\n    StopSnooze -d\r\n```\r\nPrevents system sleep, but allows the display to sleep, until the user presses any key, or terminates the shell. May be combined with other options.\r\n\r\n\r\n\u003cbr/\u003e**Changelog**\r\n\r\n2.0.0 - Target .NET 10. No new functionality.\r\n\r\n1.1.0 - Target .NET 8.0. No new functionality.\r\n\r\n1.0.6 - Added **-d/--display** option.\r\n\r\n1.0.5 - No new functionality, removed single file trimming.\r\n\r\n1.0.4 - Fixed issue with parsing **-x/--shx** option.\r\n\r\n1.0.3 - Renamed to StopSnooze. NoSnooze is a brand of caffeine pills sold by Circle K in the USA.\r\n\r\n1.0.2 - First public release as NoSnooze.\r\n\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstchan%2Fstopsnooze","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstchan%2Fstopsnooze","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstchan%2Fstopsnooze/lists"}