参考资料:
- Alfred神器使用手册 | louis blog
- MacOS神器之Alfred workflow概览
- GitHub - arpir/Alfred-Workflows-Collection: 一些好用的 Alfred Workflow
一、修改快捷键
Spotlight的默认快捷键是Command + Space
Alfred的默认快捷键是Option + Space
可以将Alfred和Spotlight的快捷键互换,之后在调用的时候会更加方便
1. 更换Spotlight快捷键
Setting → Keyboard → Keyboard Shortcuts → Spotlight
在Show Spotlight Search
一栏更改快捷键
2. 更换Alfred快捷键
打开Alfred Preferences,在General页面中的Alfred Hotkey中修改快捷键
二、添加自定义Web Search
之后就可以在Alfred中键入hys,即可打开海洋所的网页
三、将Alfred调用的终端修改为iTerm
Features → Terminal
修改如下
on alfred_script(q)
if application "iTerm2" is running or application "iTerm" is running then
run script "
on run {q}
tell application \"iTerm\"
activate
try
select first window
set onlywindow to true
on error
create window with default profile
select first window
set onlywindow to true
end try
tell the first window
if onlywindow is false then
create tab with default profile
end if
tell current session to write text q
end tell
end tell
end run
" with parameters {q}
else
run script "
on run {q}
tell application \"iTerm\"
activate
try
select first window
on error
create window with default profile
select first window
end try
tell the first window
tell current session to write text q
end tell
end tell
end run
" with parameters {q}
end if
end alfred_script
三、添加Workflow
可以在Alfred Gallery/packpal/github上寻找相关的插件
1. 安装Workflow
下载后缀名为alfredworkflow
的文件,将其拖拽至Alfred中即可安装该Workflow
2. 个人常用插件
- Recent Files
- atop
- Google Scholar Suggest
- Google Suggest
- IP Address
- Menu Bar Search
- Paste as Plain Text from Hotkey
- Shortcuts
- Dynamic File Search
- Browser Tabs
- Shimmering Obsidian
- kill
- TerminalFinder
- Youdao Translator
- 快速加入腾讯会议
- Stackoverflow
- github
四、Alfred的基础使用
- 输入:
/
,会跳转到系统根目录 - 输入:
~
,进入当前用户的用户目录 - 输入软件名称,
Enter
按键是直接打开软件 - 输入搜索内容后,
Enter
按键是直接打开文件,Command⌘ + Enter
表示打开文件所在文件夹; Command⌘ + L
居中放大显示结果;
PS:␣代表space键(空格键)
Find␣文件名
:搜索文件,Enter 确认之后,直接跳转到 Finder 中文件所在位置;Open␣文件名
:搜索文件,Enter 确认之后,直接打开该文件;tags␣标签名
:搜索此标签标记的文件in␣待搜索的文本
:列出磁盘中包含该文本的相关文件
Mac 预览功能也叫 Quick Look
。当我们在 Finder 中选中一些文件之后,按住 Space/空格键
键,可以预览文件内容。Alfred 中这个预览功能叫 Preview
。当我们在 Alfred 搜到一些文件之后,按一下 Shift
按键,就可以预览对应文件内容。同时,在 Finder 中,也可以通过 Alfred 提供的预览功能预览文件,对应快捷键是 Command+y
。