; ============================================================ ; EmptyRecycleBinHotkey.ahk ; ; Ctrl+Alt+R empties the Recycle Bin after a confirmation prompt. ; ; Requirements: AutoHotkey v2 (https://www.autohotkey.com/) ; ============================================================ #Requires AutoHotkey v2.0 ^!r::{ result := MsgBox("Empty the Recycle Bin?", "Confirm", "YesNo Icon!") if (result = "Yes") FileRecycleEmpty() }