기타/꿀팁
바탕화면 아이콘 숨기기 단축키 설정
꿈꾸는 사람_Anthony
2022. 3. 29. 13:27
반응형
AutoHotkey를 이용했다. exe파일은 아래에 첨부하겠다.
Ctrl F10을 누르면 바탕화면 아이콘이 사라진다. 다시 누르면 돌아온다.
;Press Ctrl F10 to hide or unhide desktop icons
^F10::
ControlGet, HWND, Hwnd,, SysListView321, ahk_class Progman
If HWND =
ControlGet, HWND, Hwnd,, SysListView321, ahk_class WorkerW
If DllCall("IsWindowVisible", UInt, HWND)
WinHide, ahk_id %HWND%
Else
WinShow, ahk_id %HWND%
Return
자동 실행방법은 다음과 같다.
1. win + r
2. shell:startup
3. 해당 폴더에 exe파일 넣기
컴퓨터 부팅할 때마다 실행될 것이다.
Refs..
https://www.makeuseof.com/ways-to-hide-desktop-icons-on-windows/
keywords..
hide desktop icons command
반응형