Skip to content

Instantly share code, notes, and snippets.

@Geroyuni
Geroyuni / remove_bloat_keyboard_layouts.reg
Last active April 18, 2023 00:49
Registry file to remove annoying keyboard layouts that aren't removable from the Windows settings
Windows Registry Editor Version 5.00
; This removes whatever keyboard layouts Windows keeps adding to the system.
; - Save this file
; - Run it
; - Log out from Windows, and back in
;
; If you find that Windows frequently adds the files, you can instead make
; this file run for you automatically at startup.
; - Go to %appdata%\Microsoft\Windows\Start Menu\Programs\Startup
@Geroyuni
Geroyuni / useful_hotkeys.ahk
Last active December 16, 2021 00:49
My useful hotkeys script for Autohotkey
#NoTrayIcon
#SingleInstance force
menus := {}
; Alt+Num+B: Move window to a specific portion of the monitor it is in
!B::
; Get display the active window is currently in
WinGetActiveStats, winTitle, winW, winH, winX, winY
SysGet, numDisplays, MonitorCount
@Geroyuni
Geroyuni / CemuJoystick.ahk
Last active August 31, 2017 18:16
CemuJoystick (AutoHotKey script)
; https://gist.github.com/Geroyuni/5709476b6485cdd371370f5f32ca3b9e
; Made for generic USB Joystick. May not work in XInput/better controllers
;
; JoystickR UP + (Y + X): Toggle fullscreen
; JoystickR DOWN + (Y + X): Toggle cemuhook
; JoystickR LEFT + (Y + X): Restart CEMU and load game
; JoystickR RIGHT + (Y + X): Focus window
;
; If you're going to use "Restart CEMU and load game", change these 2 values:
dir_cemu = "C:\Files\Emulation\Wii U\_Cemu\Cemu.exe"