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

推荐订阅源

WordPress大学
WordPress大学
T
Threatpost
阮一峰的网络日志
阮一峰的网络日志
美团技术团队
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
月光博客
月光博客
V
Visual Studio Blog
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
Recorded Future
Recorded Future
C
Check Point Blog
腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
罗磊的独立博客
Hacker News: Ask HN
Hacker News: Ask HN
SecWiki News
SecWiki News
博客园 - Franky
Hacker News - Newest:
Hacker News - Newest: "LLM"
N
News | PayPal Newsroom
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
W
WeLiveSecurity
The Last Watchdog
The Last Watchdog
Cloudbric
Cloudbric
F
Full Disclosure
The Cloudflare Blog
Y
Y Combinator Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
S
Schneier on Security
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
L
LINUX DO - 热门话题
AI
AI
N
News and Events Feed by Topic
T
Tor Project blog
P
Palo Alto Networks Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers 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 时、在桌面间切换或者打开和关闭“通知中心”。此功能对于患有晕动病或眩晕症的人特别有用。