013-当我拿到新的 Mac 时我会做的事情

最近学习了 zsh 的一些用法和 Homebrew,继续给大家推荐一些好用的软件,我写了一个一键安装脚本,持续更新中。

不过我也是刚刚接触到 Mac 生态,所以还是有很多地方不太清楚,这篇文章也算是自己学习的记录吧!

如果有什么不对的地方请大家多多指教,希望将来我换一台性能好一点的电脑之后,也能尝试着开始写自己的软件!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env zsh

# 允许安装任意来源的 App
sudo spctl --master-disable

# 安装 Xcode Command Line Tools
xcode-select --install

# 安装 Homebrew
# 官网:https://brew.sh
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

brew install cask

# 安装 oh-my-zsh
# 官网:https://ohmyz.sh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# 有时候执行 cd 会卡,这让人难以忍受。原因是 oh-my-zsh 在获取 git 信息,可以将 git 信息隐藏
git config --global oh-my-zsh.hide-status 1

# TAG:开源、完全免费
# 介绍:一个图形化的Homebrew应用商店
# 网站:https://aerolite.dev/applite/index.html
brew install --cask applite

# TAG:开源、完全免费
# 介绍:一个reminders的插件,可以集成到菜单栏中
# 网站:https://github.com/DamascenoRafael/reminders-menubar
brew install --cask reminders-menubar

# TAG:闭源、核心功能免费
# 介绍:一个快捷启动工具
# 网站:https://www.raycast.com
brew install --cask raycast

# TAG:开源、完全免费
# 介绍:记住每个app使用的输入法
# 网站:https://keyboardholder.leavesc.com
brew install --cask keyboardholder

# TAG:开源、完全免费
# 介绍:一个全能的下载器,支持 HTTP, FTP, BitTorrent, Magnet 等
# 网站:https://motrix.app/zh-CN/
brew install --cask motrix

# TAG:开源、完全免费
# 介绍:Mac上的一款终端工具
# 网站:https://iterm2.com
brew install --cask iterm2

# TAG:开源、完全免费
# 介绍:窗口管理软件
# 网站:https://github.com/MrKai77/Loop
brew install --cask mrkai77/cask/loop

# TAG:开源、完全免费
# 介绍:Docker管理软件,比原生的运行快速
# 网站:https://orbstack.dev
brew install --cask orbstack

# TAG:闭源,付费
# 介绍:Mac图片音视频格式转换工具
brew install --cask permute

# TAG:开源,完全免费
# 介绍:控制多台显示器的亮度
# 网站:https://github.com/MonitorControl/MonitorControl
brew install --cask MonitorControl

# TAG:开源、完全免费
# 介绍:指定某个蓝牙设备离开时锁定Mac,靠近时点亮
# 网站:https://github.com/ts1/BLEUnlock
brew install --cask bleunlock

# TAG:开源、完全免费
# 介绍:广受好评的Mac鼠标增强插件
# 网站:https://github.com/Caldis/Mos
brew install --cask mos

# TAG:开源、完全免费
# 介绍:Mac上的统计工具,在菜单栏上显示系统CPU、内存等使用率
brew install --cask stats

# TAG:开源、完全免费
# 介绍:升级Mac系统,测试机必备
# 网站:https://github.com/ninxsoft/Mist
brew install --cask mist

# TAG:开源、完全免费
# 介绍:一个在终端(或编辑器)中打开当前目录的Finder应用的插件
# 网站:https://github.com/Ji4n1ng/OpenInTerminal
brew install --cask openinterminal-lite

# 不必多说部分
brew install --cask telegram
brew install --cask discord
brew install --cask steam
brew install --cask visual-studio-code

我将这个脚本放到 GitHub 上了,后续有更新的话我会同步更新,你也可以直接使用以下指令直接一键安装:

1
2
curl -fsSL "https://github.com/HiKydin/init-my-mac/blob/main/init-my-mac.zsh" -o init-my-mac.zsh
sudo sh init-my-mac.zsh

013-当我拿到新的 Mac 时我会做的事情
https://kydins.com/posts/38fdb9c0.html
作者
Kydin
发布于
2024年6月27日
许可协议