Skip to content

Instantly share code, notes, and snippets.

View JonasNilson's full-sized avatar
🐛
Smashing bugs

Jonas Nilson JonasNilson

🐛
Smashing bugs
  • Sweden
  • 03:20 (UTC +02:00)
View GitHub Profile
@brianhassel
brianhassel / PreventSleep.cs
Last active July 4, 2025 11:14
Prevent Computer Sleep in C#
internal static class NativeMethods {
public static void PreventSleep() {
SetThreadExecutionState(ExecutionState.EsContinuous | ExecutionState.EsSystemRequired);
}
public static void AllowSleep() {
SetThreadExecutionState(ExecutionState.EsContinuous);
}