alt+Q 一键显示/隐藏桌面图标与任务栏
-
官网下载ahk
-
ahk脚本加入启动文件夹(win+r,shell:startup)
-
desktop.ahk
!q:: 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% WinHide ahk_class Shell_TrayWnd } Else{ WinShow, ahk_id %class% WinShow ahk_class Shell_TrayWnd } }
双击运行后alt+q: