常用图形化软件
- vscode
- 百度网盘
- edge
- motrix
- filezilla:
- microsoft-remote-Desktop:
- The-Unarchiver: 用于解压缩
- Simple-Screen-Shade: 如果没有亮度驱动,可以用这个当作遮罩层
- MonitorControl: 有亮度驱动,可以用这个来调节亮度
- Filmage-Screen: 用于屏幕录像
- 黑苹果常用:
- OpenCore-Configurator: OC配置工具
- Hackintool: 硬件信息查询工具
命令行软件
安装brew
BASH
1 2 3 4
| /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
/usr/bin/ruby -e "$(curl -fsSL https://cdn.jsdelivr.net/gh/ineo6/homebrew-install/install)"
|
参考
brew修改镜像源
替换为阿里源
BASH
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
| $ cd "$(brew --repo)" && git remote -v origin https://github.com/Homebrew/brew.git (fetch) origin https://github.com/Homebrew/brew.git (push)
$ cd "$(brew --repo homebrew/core)" && git remote -v origin https://github.com/Homebrew/homebrew-core.git (fetch) origin https://github.com/Homebrew/homebrew-core.git (push)
$ git -C "$(brew --repo)" remote set-url origin https://mirrors.aliyun.com/homebrew/brew.git
$ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.aliyun.com/homebrew/homebrew-core.git
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.zshrc $ source ~/.zshrc
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.aliyun.com/homebrew/homebrew-bottles' >> ~/.bash_profile $ source ~/.bash_profile
$ brew update
|
替换为清华源
BASH
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| $ git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git $ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git $ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-cask.git
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.zshrc $ source ~/.zshrc
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles' >> ~/.bash_profile $ source ~/.bash_profile
$ brew update
|
替换为中科大源
BASH
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| $ git -C "$(brew --repo)" remote set-url origin https://mirrors.ustc.edu.cn/brew.git $ git -C "$(brew --repo homebrew/core)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git $ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://mirrors.ustc.edu.cn/homebrew-cask.git
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.zshrc $ source ~/.zshrc
$ echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile $ source ~/.bash_profile
$ brew update
|
换回官方源
BASH
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| $ git -C "$(brew --repo)" remote set-url origin https://github.com/Homebrew/brew.git
$ git -C "$(brew --repo homebrew/core)" remote set-url origin https://github.com/Homebrew/homebrew-core.git
$ git -C "$(brew --repo homebrew/cask)" remote set-url origin https://github.com/Homebrew/homebrew-cask
$ vi ~/.zshrc
$ vi ~/.bash_profile
$ brew update
|
参考
安装txray
BASH
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| brew install wget
mkdir -p ~/software/github && cd ~/software/github
wget https://github.com/hsernos/Txray/releases/download/v3.0.3/Txray-macos-64.zip unzip Txray-macos-64.zip rm -rf Txray-macos-64.zip mv Txray-macos-64 txray && cd txray wget https://github.com/XTLS/Xray-core/releases/download/v1.5.2/Xray-macos-64.zip unzip Xray-macos-64.zip rm -rf Xray-macos-64.zip echo "alias txray='/Users/easul/software/github/txray/Txray'" >> ~/.zshrc source ~/.zshrc
|
安装ffmpeg
BASH
1 2 3 4
| cmdproxy
brew install ffmpeg
|
添加命令行代理
BASH
1 2 3
| echo "'alias cmdproxy='export http_proxy=127.0.0.1:2080 && export https_proxy=127.0.0.1:2080 && export socks5_proxy=127.0.0.1:1080'" >> ~/.zshrc echo "alias uncmdproxy='unset http_proxy && unset https_proxy && unset socks5_proxy'" >> ~/.zshrc source ~/.zshrc
|
edge
关闭Microsoft AutoUpdate
快捷键
默认按键解释
BASH
1 2 3 4 5 6
| ⌘ (Command 键,即win键)- 在部分 Apple 键盘上,此键也可能印有 Apple 标志 ( ) option+Shift+k ⌃ (Control 键,即ctrl键) ⌥ (Option 键,即alt键) ⇧ (Shift 键) ⇪ (Caps Lock 键) Fn(功能键)
|
参考
调换command和control键的位置
输入法调节
截图录屏调节
鼠标滚轮调节
调整后的常用快捷键
YAML
1
| 程序坞隐藏快捷键: ctrl + alt + D
|
常用操作
连接ftp
挂载NTFS到Mac
BASH
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
diskutil list
mkdir /Users/easul/windowsDisk
sudo mount_ntfs -o rw,nobrowse /dev/disk0s3 /Users/easul/windowsDisk
sudo umount /dev/disk0s3
|
〉 如果有空盘,直接格式化为exFAT格式即可在各个系统通用
参考
压缩解压为zip且加密目录
BASH
1 2 3 4 5
|
zip -er ~/Desktop/test.zip floder
unzip test.zip
|
删除当前目录及子目录中._的隐藏文件
BASH
1
| find . -type f -name '._*' -delete
|
一口气关闭所有程序
快捷键打开Terminal
BASH
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
on run {input, parameters} (* Your script goes here *) tell application "Terminal" reopen activate end tell return input end run
|
OC操作
开启关闭啰嗦模式
clover卡加号
换成OC即可
直接进入苹果系统
远景链接
百度快照
浏览器插件
YAML
1 2 3 4 5 6 7 8
| 常用: - adblock - markdown viewer - 沙拉查词 其他: Decentraleyes: edge和firefox用于加速某些不能访问的静态文件 LocalCDN: chrome用 万能复制: edge
|
推荐软件
推荐网站