This script makes use of the Numpad to control media players and volume on your system.
- Install AutoHotkey
- Right-click
.ahkscript Compile Script- Start executable
| ; Credits: jballi - https://autohotkey.com/boards/viewtopic.php?f=6&t=3392 | |
| #NoEnv | |
| #SingleInstance Force | |
| ;;;;;ListLines Off | |
| ;-- Initialize | |
| Caption :=True | |
| ToolWindow :=False | |
| Resize :=False | |
| Theme :=True |
| ; Makes the mouse cursor follow window focus, but ONLY if the focus change | |
| ; wasn't caused by the mouse - e.g. Alt-Tab, Win+<Number>, hotkeys, ... | |
| ; Saves a lot of mousing around on multi-monitor setups! | |
| Gui +LastFound | |
| lastMouseClickTime := 0 | |
| hWnd := WinExist() | |
| DllCall("RegisterShellHookWindow", UInt, hWnd) |
| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| FileInstall, VirtualDesktopAccessor.dll, %A_ScriptDir%\VirtualDesktopAccessor.dll, 1 | |
| SetTitleMatchMode 2 | |
| DetectHiddenWindows, On | |
| hVirtualDesktopAccessor := DllCall("LoadLibrary", Str, "VirtualDesktopAccessor.dll", "Ptr") | |
| GoToDesktopNumberProc := DllCall("GetProcAddress", Ptr, hVirtualDesktopAccessor, AStr, "GoToDesktopNumber", "Ptr") |
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import os | |
| import hashlib | |
| import argparse | |
| import binascii | |
| import struct | |
| def encrypt_v1(imei, key): |
This script makes use of the Numpad to control media players and volume on your system.
.ahk scriptCompile Script| #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
| ; #Warn ; Enable warnings to assist with detecting common errors. | |
| SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
| SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
| Menu, Tray, Icon, shell32.dll, 16 ;this changes the icon into a little laptop thingy. just useful for making it distinct from the others. | |
| ;#######THIS IS THE BEST SCRIPT I'VE EVER WRITTEN.######### | |
| ;And also one of the simplest. Basically, If you press the "explorer" key (F1) it will instantly: |
| :root | |
| { | |
| --font-size-normal: 19px; | |
| --font-size-code: 15px; | |
| --font-size-side-dock: 15px; | |
| --font-size-side-dock-title: 18px; | |
| --font-size-status-bar: 12px; | |
| --font-size-h1: 38px; | |
| --font-size-h2: 30px; | |
| --font-size-h3: 24px; |