微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

使用autohotkey定制windows 10 虚拟桌面的快捷键

Win10没有提供修改虚拟桌面快捷键的功能认的快捷键win+tab 打开虚拟桌面列表之后,还需要手动点击某个虚拟桌面才能进行切换,不是很方便,


所以我们使用AHK软件来自定义快捷键 ,通过自定义的快捷键快速的在多个虚拟桌面之间进行切换,


所需工具:AHK(AutoHotkey)
工具说明:键盘,鼠标等的脚本模拟工具,可以监听,触发键盘和鼠标的动作。
下载: autohotkey.com/downloadhttps://www.autohotkey.com/download/


如何创建脚本参考官方说明:

b. How to create a script

Text instructions:

  1. Right-Click on your desktop. 右键点击桌面
  2. Find "New" in the menu. 弹出菜单中选择“新建
  3. Click "AutoHotkey Script" inside the "New" menu. 点击AutoHotkey Script子菜单
  4. Give the script a new name. It must end with a .ahk extension. 重命名文件
  5. Find the newly created file on your desktop and right-click it. 右键点击刚才创建的文件
  6. Click "Edit Script". 菜单中点击Edit Script
  7. A window should have popped up,probably Notepad. If so,SUCCESS!弹出编辑窗口,可能是记事本
  8. Save the File. 保存脚本文件
  9. Double-click the file/icon in the desktop to run it. 双击脚本文件,运行

参考脚本:

; 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 显示任务视图(所有桌面)
alt+F1 上一个桌面
alt+F2 下一个桌面
替代认win+数字的功能,具体可自定义
win+1 激活钉钉
win+2 激活IDEA
win+3 激活微信
win+c 激活chrome
win+b 激活beyondcompare


如想要修改,只需编辑脚本文件,替换想应的应用程序名即可。

原文地址:https://www.jb51.cc/windows/372972.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐