#Keyboard Style
The following code:
<kbd>WIN</kbd>… should look like it does on this page, but instead looks like this: WIN in a Gist Markdown File.
| Windows Registry Editor Version 5.00 | |
| ; This script restores the standard Windows 10 Libraries found in This PC (tested with Windows 10 1909) | |
| ; == Restore 3D Objects Folder from This PC | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] |
| Windows Registry Editor Version 5.00 | |
| ; This script removes the standard Windows 10 Libraries found in This PC (tested with Windows 10 1909) | |
| ; == Remove 3D Objects Folder from This PC | |
| [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] | |
| [-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\{0DB7E03F-FC29-4DC6-9020-FF41B59E513A}] |
| Windows Registry Editor Version 5.00 | |
| [-HKEY_CLASSES_ROOT\Directory\Background\shell\cmder] | |
| [-HKEY_CLASSES_ROOT\Directory\shell\cmder] |
| /* More Accurate Elite Orange: FD831E */ | |
| /* Elite Hover: #F6AF3D */ | |
| @import url(http://fonts.googleapis.com/css?family=Roboto:400,700); | |
| html.site-eddb, body.site-eddb, .wrap { | |
| background-color: #000; | |
| } | |
| html, body { |
| .woocommerce.archive ul.products li.product h3, | |
| .woocommerce ul.products li.product h3 { | |
| top: .25em; | |
| color: #616671; | |
| } | |
| .woocommerce.archive ul.products li.product { | |
| margin-bottom: 2.5em; | |
| } |
#Keyboard Style
The following code:
<kbd>WIN</kbd>… should look like it does on this page, but instead looks like this: WIN in a Gist Markdown File.
If you're going to work with [AutoHotKey] scripts, I recommend that you download and install [Sublime Text 3], which is an excellent editor for all sorts of languages, including AutoHotKey .AHK files. To get the most out of Sublime Text 3 when editing AHK files:
install and using your directional keys (up/down), highlight Package Control: Install Package and press Enterautohotkey, and when all the results are filtered to just the one AutoHotKey package and it is highlighted, press Enter. This will install the AutoHotKey package.| /** | |
| * Advanced Window Snap | |
| * Snaps the Active Window to one of nine different window positions. | |
| * | |
| * @author Andrew Moore <[email protected]> | |
| * @version 1.0 | |
| */ | |
| /** | |
| * SnapActiveWindow resizes and moves (snaps) the active window to a given position. |