惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
I
InfoQ
宝玉的分享
宝玉的分享
G
Google Developers Blog
J
Java Code Geeks
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
B
Blog RSS Feed
博客园 - 聂微东
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
The Cloudflare Blog
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏

peijie's wiki

怎么抢高铁票 - peijie's wiki 两日游背包收纳 - peijie's wiki 什么是 AI,什么是大语言模型,缺点分析,以及使用技法和技巧总结 - peijie's wiki macOS 里关于“名字”的那些事 - peijie's wiki 将 CapsLock 映射为 Escape,对于macos - peijie's wiki 拔智齿后的食谱 - peijie's wiki 拔智齿后的食谱 - peijie's wiki proxy搭建稳如老狗的原理(老白版) - peijie's wiki 混音原理,Linux混音实操,有线麦克风录音+混录系统BGM+耳返监听 - peijie's wiki Linux 搜索最佳实践【入门版】 - peijie's wiki 线材库存 - peijie's wiki 药品库存 - peijie's wiki pacman - peijie's wiki chinese-input-method-setup - peijie's wiki Programming Concepts and Algorithms/Solutions - peijie's wiki Programming Foundations with CSS - peijie's wiki Programming Foundations with HTML - peijie's wiki 如何高效地学习一门编程语言 - peijie's wiki 低卡火锅蘸料 - peijie's wiki 中餐厨艺课 - peijie's wiki liupj.top
使用键盘组合键启动iTerm - peijie's wiki
lpj · 2025-03-19 · via peijie's wiki

参考了:https://shinyu0430.github.io/2023/05/12/iterm-shortcut-mac-automator/

用键盘组合键启动应用程序无疑是最高效的方式,话不多说,下面演示如何实现用键盘组合键启动iTerm

  1. 运行【自动操作】,即:automator

  2. 新建文稿,选取文稿类型,快速操作

  3. 搜索AppleScript,双击【运行AppleScript】

  4. 粘贴代码

1
2
3
4
5
6
7
if application "iTerm" is running then
tell application "iTerm"
activate
end tell
else
activate application "iTerm"
end if
  1. Command+S 保存,命名为【运行iTerm】

  2. 系统设置=》键盘=》键盘快捷键…=》服务=》通用,设置组合键即可,我设置成了[command+shift+m]

Have a try!