Skip to content

Instantly share code, notes, and snippets.

View Akronae's full-sized avatar
🧙‍♂️
Grand code wizard

Alexandre Daubricourt Akronae

🧙‍♂️
Grand code wizard
View GitHub Profile
@Akronae
Akronae / sleep.bat
Created October 18, 2019 14:23
Windows delayed sleeping script
set /P delay=" Sleep in (minutes): "
set /a delay=delay * 60
timeout /T %delay% & rundll32.exe powrprof.dll,SetSuspendState 0,1,0