-
바탕화면 아이콘 숨기기 단축키 설정기타/꿀팁 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
반응형'기타 > 꿀팁' 카테고리의 다른 글
ngrok으로 외부에서 ssh 접속하기 + 자동 pw 입력 (1) 2022.11.09 윈도우 - Proxy를 Powershell로, 나아가 단축키로 실행시켜보자. (1) 2021.07.07 Trackpoint(트랙포인트, PointingStick)스크롤(with autohotkey) (2) 2020.12.14