欢迎使用CSDN-markdown编辑器

Windows下常用软件

快捷键软件: Autohotkey
笔记软件: OneNote
模拟Shell软件: Babun
SSH软件: SecureCRT + Xshell5
视频播放软件: QQ播放器
在线视频播放软件: 腾讯视频
浏览器: QQ浏览器 + Chrome
音乐播放器: QQ音乐
安全工具: QQ电脑管家
虚拟机管理器: Vmware Workstation
文件搜索: EveryThing
文件管理器: TotalCommander
粘贴板工具: Ditto
输入法: 搜狗输入法
PDF阅读器: SumatraPDF
Office办公软件: Microsoft Office
Windows和Linux文件互传工具: FileZilla
IRC客户端: mIRC
MySQL客户端: MySQL-Front
思维导图软件: Mindjet MindManager
MarkDown编辑器: 小书匠
比较合并工具: WinMerge

AutoHotKey快捷键映射

Alt + F: Chrome
Alt + B: TotalCommander
Alt + D: SecureCRT
Alex + E: Xshell5
Alt + J: QQ浏览器
Alt + R: RTX
Alt + ]: MySQL-Front
Alt + M: 小书匠
Alt + L: PowerPoint
Alt + G: Word
Alt + H: Excel
Alt + P: SumatraPDF
Alt + V: Everything
Ctrl + `: Ditto
Win + W: Babun
Win + 1: OneNote
Win + N: QQ音乐
Win + S: 微信
Win + K: QQ
Win + M: QQ影音
Win + H/R/Y/U/O/P: 特定字符串

AutoHotKey配置

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
SetTitleMatchMode 2    

Activate(t)
{
  IfWinActive,%t%
  {
    WinMinimize
    return
  }
  SetTitleMatchMode 2    
  DetectHiddenWindows,on
  IfWinExist,%t%
  {
    WinShow
    WinActivate           
    return 1
  }
  return 0
}

ActivateAndOpen(t,p)
{
  if Activate(t)==0
  {
    Run %p%
    WinActivate
    return
  }
}

!f::ActivateAndOpen("- Google Chrome","C:\Program Files (x86)\Google\Chrome\Application\chrome.exe")
!b::ActivateAndOpen("Total Commander (x64) 8.52a","D:\Program Files\totalcmd\TOTALCMD64.EXE")


;发送“%日期%当班的人是:”到剪切板,Alt+C,v1.1.20.03测试通过
#h::
{
    ;清空剪切板
    clipboard =
    ;格式化输出日期
    FormatTime, OutputVar, ,LongDate
    ;发送至剪切板
    ;clipboard :=OutputVar "当班的人是:"
        clipboard :="password"
    ;测试代码,ctrl+v粘贴即可
    ;MsgBox %clipboard%
}
return

#y::
{
    ;清空剪切板
    clipboard =
    ;格式化输出日期
    FormatTime, OutputVar, ,LongDate
    ;发送至剪切板
    ;clipboard :=OutputVar "当班的人是:"
        clipboard :="xxxxx"
    ;测试代码,ctrl+v粘贴即可
    ;MsgBox %clipboard%
}
return

#t::
{
    ;清空剪切板
    clipboard =
    ;格式化输出日期
    FormatTime, OutputVar, ,LongDate
    ;发送至剪切板
    ;clipboard :=OutputVar "当班的人是:"
        clipboard :="xxxx"
    ;测试代码,ctrl+v粘贴即可
    ;MsgBox %clipboard%
}
return

#p::
{
    ;清空剪切板
    clipboard =
        clipboard :="xxxx"
}
return

#o::
{
    ;清空剪切板
    clipboard =
        clipboard :="egrep -i 'failed|error'"
}
return

#0::
{
    ;清空剪切板
    clipboard =
        clipboard :="1111"
}
return

#u::
{
    ;清空剪切板
    clipboard =
        clipboard :="xxxxx"
}
return

!d::
IfWinNotExist, ahk_class VanDyke Software - SecureCRT
Run, "C:\Program Files\VanDyke Software\SecureCRT\SecureCRT.exe"
Else
{
IfWinActive, ahk_class VanDyke Software - SecureCRT
WinMinimize, 
Else
WinActivate,
}
return

!e::
IfWinNotExist,ahk_exe Xshell.exe
Run, "D:\Program Files (x86)\NetSarang\Xshell 5\Xshell.exe"
Else
{
IfWinActive,ahk_exe Xshell.exe
WinMinimize, 
Else
WinActivate,
}
return

!j::
IfWinNotExist,ahk_class QQBrowser_WidgetWin_1
Run, "C:\Program Files (x86)\Tencent\QQBrowser\qqbrowser.exe" -sc=desktopshortcut -fixlaunch=0
Else
{
IfWinActive,ahk_class QQBrowser_WidgetWin_1
WinMinimize, 
Else
WinActivate,
}
return

!r::
IfWinNotExist, ahk_class RTXGui
Run, C:\Users\lkong\AppData\Local\Tencent\RTXLite\Application\RTXLoader.exe
Else
{
IfWinActive, ahk_class RTXGui
WinMinimize, 
Else
WinActivate,
}
return

#n::
IfWinNotExist, ahk_exe QQMusic.exe
Run, "C:\Program Files (x86)\Tencent\QQMusic\QQMusic1273.11.18.34\QQMusic.exe"
Else
{
IfWinActive, ahk_exe QQMusic.exe
WinMinimize, 
Else
WinActivate,
}
return

#s::
IfWinNotExist, ahk_class WeChatMainWndForPC
Run, "C:\Program Files (x86)\Tencent\WeChat\WeChat.exe"
Else
{
IfWinActive, ahk_class WeChatMainWndForPC
WinMinimize, 
Else
WinActivate,
}
return


#m::
IfWinNotExist, ahk_class QQPlayer Window
Run, "D:\Program Files (x86)\Tencent\QQPlayer\QQPlayer.exe"
Else
{
IfWinActive, ahk_class QQPlayer Window
WinMinimize, 
Else
WinActivate,
}
return

!]::
IfWinNotExist, ahk_exe MySQL-Front.exe
Run, "D:\Program Files\MySQL-Front\MySQL-Front.exe"
Else
{
IfWinActive, ahk_exe MySQL-Front.exe
WinMinimize, 
Else
WinActivate,
}
return


#q::
RTX="C:\Users\lkong\Documents\RTXC File List\Accounts\lkong\RTXDownload\imageCache"
Run,% "Explorer.exe /select, " RTX
return

!m::
IfWinNotExist, ahk_exe StoryWriter.exe
Run, "D:\Program Files\Story\StoryWriter.exe"
Else
{
IfWinActive, ahk_exe StoryWriter.exe
WinMinimize, 
Else
WinActivate,
}
return

#k::
IfWinNotExist, ahk_exe QQ.exe
Run, "C:\Program Files (x86)\Tencent\QQ\Bin\QQScLauncher.exe"
Else
{
IfWinActive, ahk_exe QQ.exe
WinMinimize, 
Else
WinActivate,
}
return


!l::
IfWinNotExist, ahk_exe POWERPNT.EXE
Run, "C:\Program Files\Microsoft Office\root\Office16\POWERPNT.EXE"
Else
{
IfWinActive, ahk_exe POWERPNT.EXE
WinMinimize, 
Else
WinActivate,
}
return

!p::
IfWinNotExist, ahk_exe SumatraPDF.exe
Run, "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\SumatraPDF"
Else
{
IfWinActive, ahk_exe SumatraPDF.exe
WinMinimize, 
Else
WinActivate,
}
return

!g::
IfWinNotExist, ahk_exe WINWORD.EXE
Run, "C:\Program Files\Microsoft Office\root\Office16\WINWORD.EXE"
{
IfWinActive, ahk_exe WINWORD.EXE
WinMinimize, 
Else
WinActivate,
}
return

!h::
IfWinNotExist, ahk_exe EXCEL.EXE
Run, "C:\Program Files\Microsoft Office\root\Office16\EXCEL.EXE"
{
IfWinActive, ahk_exe EXCEL.EXE
WinMinimize, 
Else
WinActivate,
}
return

!-::
IfWinNotExist, ahk_exe ApplicationFrameHost.exe
Run, "C:\Windows\WinSxS\amd64_microsoft-windows-microsoftedge_31bf3856ad364e35_10.0.10586.0_none_9dbd56cc9a76ad54\MicrosoftEdge.exe"
{
IfWinActive, ahk_exe ApplicationFrameHost.exe
WinMinimize, 
Else
WinActivate,
}
return

!t::
IfWinNotExist, ahk_exe notepad.exe
Run, "C:\Windows\WinSxS\amd64_microsoft-windows-microsoftedge_31bf3856ad364e35_10.0.10586.0_none_9dbd56cc9a76ad54\MicrosoftEdge.exe"
{
IfWinActive, ahk_exe notepad.exe
WinMinimize, 
Else
WinActivate,
}
return


!\::
IfWinNotExist, ahk_exe MobaXterm.exe
Run, "C:\Windows\WinSxS\amd64_microsoft-windows-microsoftedge_31bf3856ad364e35_10.0.10586.0_none_9dbd56cc9a76ad54\MicrosoftEdge.exe"
{
IfWinActive, ahk_exe MobaXterm.exe
WinMinimize, 
Else
WinActivate,
}
return

#w::
IfWinNotExist, ahk_exe mintty.exe
Run, "C:\Users\lkong\.babun\cygwin\bin\mintty.exe"
{
IfWinActive, ahk_exe mintty.exe
WinMinimize, 
Else
WinActivate,
}
return
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值