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
| #define WIN32_LEAN_AND_MEAN | |
| #include <tchar.h> | |
| #include <stdint.h> | |
| #include <windows.h> | |
| #include <shellapi.h> | |
| COLORREF rgbText = 0xffffff; | |
| LPTSTR pchFontName = _T("Times New Roman"); | |
| INT iFontSizePt = 24; | |
| LPTSTR pchText = _T("InstallSword Wizard"); |
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
| #define BUILD_VER "1.16.19" | |
| #define BUILD_REV "$Revision: 1.4 $" | |
| #define BUILD_DATE __DATE__ | |
| #define BUILD_TIME __TIME__ | |
| //mrp_revision occurs before kernel_version in original | |
| //0x000 | |
| static char *mrp_revision = BUILD_REV; |
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 | |
| # Put into /lib/systemd/system-sleep/suspend-modules | |
| # chmod a+x /lib/systemd/system-sleep/suspend-modules | |
| # Create /etc/suspend-modules.conf | |
| # with one module per line | |
| # credits to: | |
| # https://bbs.archlinux.org/viewtopic.php?pid=1540125#p1540125 |