使用autohotkey定制windows 10 虚拟桌面的快捷键
Win10没有提供修改虚拟桌面快捷键的功能,默认的快捷键win+tab 打开虚拟桌面列表之后,还需要手动点击某个虚拟桌面才能进行切换,不是很方便, 所以我们使用AHK软件来自定义快捷键 ,通过自定义的快捷键快速的在多个虚拟桌面之间进行切换, 所需工具:AHK(AutoHotkey) 如何创建脚本参考官方说明: b. How to create a scriptText instructions:
参考脚本: ; Windows 10 虚拟桌面自动切换 !1:: send #{Tab} Return !F2:: send #^{right} return !F1:: send #^{left} return #2:: { DetectHiddenWindows,on if WinExist("ahk_exe idea64.exe") WinActivate,ahk_class SunAwtFrame else Run,idea64.exe } return ; ---------------------------------------------------- #1:: { DetectHiddenWindows,on if WinExist("ahk_exe notepad++.exe") WinActivate,notepad++ else Run,notepad++.exe } return ; ---------------------------------------------------- #3:: { DetectHiddenWindows,on if WinExist("ahk_exe WeChat.exe") WinActivate,ahk_class WeChatMainWndForPC else Run,WeChat.exe } return ; ---------------------------------------------------- #c:: { DetectHiddenWindows,on if WinExist("ahk_exe chrome.exe") WinActivate,ahk_class Chrome_WidgetWin_1 else Run,chrome.exe } return ; ---------------------------------------------------- #b:: { DetectHiddenWindows,on if WinExist("ahk_exe BCompare.exe") WinActivate,ahk_class TViewForm.UnicodeClass else Run, BCompare.exe } return ;------------------------------------------ 脚本说明: alt+1 显示任务视图(所有桌面) 如想要修改,只需编辑脚本文件,替换想应的应用程序名即可。 (编辑:鄂州站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- wcf – 有关替换Microsoft .NET的Web服务增强功能
- windows – procdump -t – 如何在进程终止时转储
- windows-phone – appx应用程序和appxbundle应用
- window python2.7 ImportError: No module named
- cmd – 如何为特定应用程序强制传出ip? ForceBi
- Win10 将应用程序exe放到开始屏幕
- 如何在Windows和Java下与USB设备进行通信?
- 在Windows启动时使用参数启动应用程序
- .net – SendKeys.Send和Windows Key
- Windows 8 C# – 将网页源检索为字符串