Skip to content

Instantly share code, notes, and snippets.

@piomar123
Created February 10, 2021 14:46
Show Gist options
  • Save piomar123/7596fd3f4c9e7c2d80375af7caf1ec26 to your computer and use it in GitHub Desktop.
Save piomar123/7596fd3f4c9e7c2d80375af7caf1ec26 to your computer and use it in GitHub Desktop.
piomar123 #code16challenge
#ifdef _WIN32
#include <windows.h>
#pragma comment(lib, "user32.lib")
int main() {
return DefWindowProc(GetDesktopWindow(), WM_SYSCOMMAND, SC_MONITORPOWER, 2);
}
#else
#include <stdlib.h>
int main() {
return system("xset dpms force off");
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment