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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
C
Check Point Blog
M
MIT News - Artificial intelligence
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
博客园 - 【当耐特】
U
Unit 42
月光博客
月光博客
腾讯CDC
Y
Y Combinator Blog
小众软件
小众软件
博客园_首页
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
T
Tailwind CSS Blog

博客园 - ZY.Zhou

windows10下docker启动失败原因定位 electron工程目录结构 centos7下安装redis集群 Big Sur dmg镜像制作macos安装盘 WINDOWS下编译BOOST_PYTHON MYSQL单服务器迁移数据到集群 Centos7 解决gcc 4.85版本,升级更改版本gcc ubuntu下载安装文件和依赖包 fortify的linux环境使用步骤 linux top命令VIRT,RES,SHR,DATA的含义 docker导出镜像并压缩 main.c ubuntu 20开启rc.local LINUX间SSH免密登录 ubuntu 20.10上使用KVM安装K8S QEMU KVM宿主机与客户机间共享目录 Ubuntu20.10减肥 ubuntu的kennel命令行在哪个文件?虚拟机没有开SSH和TELNET,怎么连? 车辆功能部分缩写
MAC精简动画效果
ZY.Zhou · 2021-10-25 · via 博客园 - ZY.Zhou

用VNC连接MAC时很卡,精简掉MAC的动画效果,可以提高体验

打开MAC的终端,输入如下命令

# 精简动画
defaults write -g NSAutomaticWindowAnimationsEnabled -bool FALSE
defaults write com.apple.finder QLPanelAnimationDuration -int 0;killall Finder
defaults write com.apple.dock expose-animation-duration -int 0;killall Dock
defaults write -g NSWindowResizeTime -float 0.01
defaults write com.apple.dock springboard-hide-duration -int 0;killall Dock
defaults write com.apple.dock springboard-page-duration -int 0;killall Dock
defaults write com.apple.dock autohide-time-moidifier -int 0;killall Dock

恢复动画

# 恢复动画
defaults delete -g NSAutomaticWindowAnimationsEnabled
defaults delete com.apple.finder QLPanelAnimationDuration;killall Finder
defaults delete com.apple.dock expose-animation-duration;killall Dock
defaults delete -g NSWindowResizeTime
defaults delete com.apple.dock springboard-hide-duration;killall Dock
defaults delete com.apple.dock springboard-page-duration;killall Dock
defaults delete com.apple.dock autohide-time-moidifier;killall Dock

另,停止或减少屏幕上某些元素的移动,例如,打开 App 时、在桌面间切换或者打开和关闭“通知中心”。此功能对于患有晕动病或眩晕症的人特别有用。