跳到主要内容

mac办公协作

1、安装PicGo

一款配合markdown文档写作实现图窗快速提交到oss到工具,非常丝滑,目前还处于beta版本,可以吐槽体验,哈哈哈

https://github.com/Molunerfinn/PicGo/releases

如果安装出现问题,可以尝试以下方式

sudo xattr -d com.apple.quarantine "/Applications/PicGo.app" 

2、alfred

alfred是一款提高工作的效率的协作工具

2.1 安装

安装地址: https://www.alfredapp.com/powerpack/

2.2 配置优化

2.2.1 购买永久版本

为了使用所有的功能,前提需要购买激活永久升级版本

image-20240824152524508

2.2.2 配置file搜索

搜索时可以在前面输入open +文件名即可打开对应的文件

搜索时可以在前面输入in + 关键字,可以搜索到对应的文件

image-20240824152828997

修改搜索范围为/,这样搜索的的文件更为全面

image-20240824153804113

2.2.3 粘贴板配置

可以配置粘贴板保存历史记录等

image-20240824154516120

2.2.4 配置terminal

features -> Terminal -> Custom 进行配置

on alfred_script(q)
tell application "System Events"
-- some versions might identify as "iTerm2" instead of "iTerm"
set isRunning to (exists (processes where name is "iTerm")) or (exists (processes where name is "iTerm2"))
end tell

tell application "iTerm"
activate
set hasNoWindows to ((count of windows) is 0)
if isRunning and hasNoWindows then
create window with default profile
end if
select first window

tell the first window
if isRunning and hasNoWindows is false then
create tab with default profile
end if
tell current session to write text q
end tell
end tell
end alfred_script

2.2.5 记录历史输入

image-20240824162515315

2..2.6 workfolow

可以下载alfred爱好者开发的一些插件

https://github.com/sunzsh/favoritesWorkflow4Alfred?tab=readme-ov-file

如何实现自己写一个插件