zoukankan      html  css  js  c++  java
  • 关闭MAC特效

    Launchpad
    首先打开“终端”(Finder->应用程序->实用工具->终端),并且输入以下命令:
    defaults write com.apple.dock springboard-show-duration -int 0
    defaults write com.apple.dock springboard-hide-duration -int 0;killall Dock

    如果你想还原成原样,也很简单,再次打开“终端”(Finder->应用程序->实用工具->终端),并且输入以下命令:
    defaults delete com.apple.dock springboard-show-duration
    defaults delete com.apple.dock springboard-hide-duration;killall Dock

    Mission Control
    首先打开“终端”(Finder->应用程序->实用工具->终端),并且输入以下命令:
    defaults write com.apple.dock expose-animation-duration -int 0;killall Dock

    如果你想还原成原样,也很简单,再次打开“终端”(Finder->应用程序->实用工具->终端),并且输入以下命令:
    defaults delete com.apple.dock expose-animation-duration;killall Dock

  • 相关阅读:
    Regular Expression Matching
    Palindrome Number
    String to Integer (atoi)
    Reverse Integer
    ZigZag Conversion
    Longest Palindromic Substring
    Add Two Numbers
    git 操作原理
    ES6学习之路2----变量的解构赋值
    ES6学习之路1----变量的声明
  • 原文地址:https://www.cnblogs.com/laxknight/p/3259256.html
Copyright © 2011-2022 走看看