Hide Desktop Icon[AutoHotKey]/* Library: * Hide Desktop Icon * Description: * Hide the desktop icon by double clicking the left mouse button * Warnning: * None. * Version: * v1.0.3 * Author: * 泠音 */#IfWinActive ahk_class WorkerW ahk_exe Explorer.EXE{ intInterval:=200 ~LButton::If(A_PriorHotkey<> “~LBUtton” or A_TimeSincePriorHotkey>intInterval){ KeyWait, LButton return } HideOrShowDesktopIcons() return}HideOrShowDesktopIcons(){ ControlGet, class, Hwnd,, SysListView321, ahk_class Progman If class = ControlGet, class, Hwnd,, SysListView321, ahk_class WorkerW If DllCall(“IsWindowVisible”, UInt,class) WinHide, ahk_id %class% Else WinShow, ahk_id %class%}