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
| #include "metaverse.h" | |
| #include "display.h" | |
| #include <fstream> | |
| #include <ios> | |
| #include <iostream> | |
| #include <istream> | |
| #include <unistd.h> | |
| #include <vector> | |
| /** |
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
| #!/bin/bash | |
| echo 1 > /proc/sys/kernel/sysrq | |
| echo c > /proc/sysrq-trigger |
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
| @echo off | |
| echo This file will change registry entries. Please back up the registry if you want to restore the system. | |
| echo Press any key to continue... | |
| pause | |
| rem REG ADD "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\i8042prt\Parameters" /v "CrashOnCtrlScroll" /t REG_DWORD /d 0x01 /f | |
| REG ADD "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\kbdhid\Parameters" /v "CrashOnCtrlScroll" /t REG_DWORD /d 0x01 /f | |
| ECHO Registry files edited. | |
| ECHO To finalize changes, you must restart. Press Ctrl+C to abort shutdown, otherwise, press any key. |