├── README.md └── Terminal Tweaks.rtf /README.md: -------------------------------------------------------------------------------- 1 | **Hosted by [MacTweaks](http://www.mactweaks.net)** 2 | 3 | ## A Collection of Terminal Tweaks for Mac OS X 4 | 5 | **Notes** 6 | 7 | * Most of these 'tweaks' edit .plist files in ~/Library/Preferences. To use them simply paste a command into a Terminal window. 8 | * You can revert changes by deleting the appropriate .plist file or by replacing TRUE/FALSE. 9 | * I recommend testing these tweaks in a temporary account and turning on 'fast user switching'. 10 | * You can edit .plist files directly by opening them in xcode. 11 | * Use sudo at the beginning of a command to edit locked files. 12 | * Drag and drop files and folders into a terminal window to add its path. 13 | * cd means change directory 14 | * Files with a space in their name require a backslash (DVD\ Player.app) or quotation marks ("DVD Player.app") 15 | 16 | -- 17 | 18 | **Change System Fonts** 19 | 20 | * These are the default fonts and sizes. 21 | * To use these commands per application replace -g with -app followed by the name of the application (-app Bean NSTitleBarFont). 22 | * To use these commands on applications located within a folder first cd into that directory. 23 | * 'NSBoldSystemFont' safari tab bar. 24 | * 'NSPaletteFont' utility window title bar. 25 | * 'NSTitleBarFont' title bar. 26 | 27 | -- 28 | 29 | **Plain Text In Mail** 30 | 31 | defaults write com.apple.mail PreferPlainText -bool TRUE 32 | 33 | **Disable And Hide Spotlight** 34 | 35 | sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search; killall SystemUIServer 36 | 37 | **Disable And Hide Notifications** 38 | 39 | sudo defaults write /System/Library/LaunchAgents/com.apple.notificationcenterui KeepAlive -bool FALSE 40 | 41 | **Expand Print Panel By Default** 42 | 43 | defaults write -g PMPrintingExpandedStateForPrint -bool TRUE 44 | 45 | **Expand Save Panel By Default** 46 | 47 | defaults write -g NSNavPanelExpandedStateForSaveMode -bool TRUE 48 | 49 | **Disable Mission Control Animation** 50 | 51 | defaults write com.apple.dock expose-animation-duration -int 0; killall Dock 52 | 53 | **Show All Hidden Files** 54 | 55 | defaults write com.apple.finder AppleShowAllFiles TRUE 56 | 57 | **Disable Tooltips** 58 | 59 | defaults write -g NSInitialToolTipDelay -int 999999; killall Finder 60 | 61 | **Enable Text Selection In Quicklook** 62 | 63 | defaults write com.apple.finder QLEnableTextSelection -bool TRUE; killall Finder 64 | 65 | **Disable Quick Look Window Animation** 66 | 67 | defaults write -g QLPanelAnimationDuration -float 0; killall Finder 68 | 69 | **Disable New Window Animation** 70 | 71 | defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool FALSE; killall SystemUIServer 72 | 73 | **Disable Dialog Box Animation** 74 | 75 | defaults write NSGlobalDomain NSWindowResizeTime 0.001 76 | 77 | **Hide Applications** 78 | 79 | sudo chflags hidden /path/to/file 80 | 81 | **Disable Autosave/Versions And Enable ’Save-As’** 82 | 83 | defaults write -g ApplePersistence -bool no 84 | 85 | **Disable Rubber Band Scrolling** 86 | 87 | defaults write -g NSScrollViewRubberbanding -int 0; killall Finder 88 | 89 | **Disable Rubber Band Scrolling In Itunes** 90 | 91 | defaults write com.apple.iTunes disable-elastic-scroll -bool TRUE 92 | 93 | **Set Path Bar To Home Directory** 94 | 95 | defaults write com.apple.finder PathBarRootAtHome -bool TRUE; killall Finder 96 | 97 | **Show Full Path In Finder Title Bar** 98 | 99 | defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE 100 | 101 | **Hide 'Automatically Add To Itunes' Folder** 102 | 103 | chflags hidden ~/Music/"Automatically Add to iTunes.localized" 104 | 105 | **Change Default Screenshot Location** 106 | 107 | defaults write com.apple.screencapture location /path/to/destination; killall SystemUIServer 108 | 109 | **Single App Mode** 110 | 111 | defaults write com.apple.dock single-app -bool TRUE; killall Dock 112 | 113 | **Disable Dashboard** 114 | 115 | defaults write com.apple.dock single-app -bool TRUE; killall Dock 116 | 117 | **Trash Folder On Desktop** 118 | 119 | ln -s ~/.Trash ~/Desktop/Trash 120 | 121 | **Change System Fonts** 122 | 123 | defaults write -g NSBoldSystemFont LucidaGrande-Bold  124 | defaults write -g NSBoldSystemFontSize -int 13  125 | defaults write -g NSFixedPitchFont Menlo-Regular  126 | defaults write -g NSFixedPitchFontSize -int 11  127 | defaults write -g NSFont Helvetica  128 | defaults write -g NSFontSize -int 12  129 | defaults write -g NSLabelFont LucidaGrande  130 | defaults write -g NSLabelFontSize -int 10  131 | defaults write -g NSMessageFont LucidaGrande  132 | defaults write -g NSMessageFontSize -int 13  133 | defaults write -g NSPaletteFont LucidaGrande  134 | defaults write -g NSPaletteFontSize -int 10  135 | defaults write -g NSSystemFont LucidaGrande  136 | defaults write -g NSSystemFontSize -int 13 137 | defaults write -g NSTitleBarFont LucidaGrande  138 | defaults write -g NSTitleBarFontSize -int 13  139 | defaults write -g NSToolTipsFont LucidaGrande  140 | defaults write -g NSToolTipsFontSize -int 11 141 | 142 | **Lock Dock** 143 | 144 | defaults write com.apple.Dock contents-immutable -bool TRUE; killall Dock 145 | 146 | **2D Dock** 147 | 148 | defaults write com.apple.dock no-glass -boolean TRUE; killall Dock 149 | 150 | **Disable Dock** 151 | 152 | defaults write com.apple.dock autohide-time-modifier -int 999999 && defaults write com.apple.Dock autohide-delay -float 999999; killall Dock 153 | 154 | **Resize Dock** 155 | 156 | defaults write com.apple.dock tilesize -int 34 157 | 158 | **Show Dock Animation Speed** 159 | 160 | defaults write com.apple.dock autohide-time-modifier -int 1 161 | 162 | **Hide Dock Animation Speed** 163 | 164 | defaults write com.apple.Dock autohide-delay -float 1 165 | 166 | **Disable Dock Animation** 167 | 168 | defaults write com.apple.dock autohide-time-modifier -int 0.1 && defaults write com.apple.Dock autohide-delay -float 0.1; killall Dock 169 | 170 | **Transparent Icon For Hidden Applications** 171 | 172 | defaults write com.apple.dock showhidden -bool TRUE; killall Dock 173 | 174 | **Disable Bouncing Applications In Dock** 175 | 176 | defaults write com.apple.dock no-bouncing -bool TRUE; killall Dock 177 | 178 | 179 | 180 | 181 | 182 | -------------------------------------------------------------------------------- /Terminal Tweaks.rtf: -------------------------------------------------------------------------------- 1 | {\rtf1\ansi\ansicpg1252\cocoartf1138\cocoasubrtf510 2 | {\fonttbl\f0\fnil\fcharset0 LucidaGrande;\f1\fnil\fcharset0 Monaco;} 3 | {\colortbl;\red255\green255\blue255;\red246\green246\blue246;} 4 | \paperw11905\paperh16837\margl1011\margr1011\margb1445\margt1009\vieww8400\viewh19040\viewkind0\viewscale125 5 | \deftab720 6 | \pard\pardeftab720\sl260 7 | 8 | \f0\b\fs18 \cf0 Terminal Tweaks 9 | \b0 \ 10 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 11 | \cf0 \'95 Most of these 'tweaks' edit .plist files in ~/Library/Preferences. To use them simply paste a command into a Terminal window. \ 12 | \ 13 | \'95 You can revert changes by deleting the appropriate .plist file or by replacing TRUE/FALSE. \ 14 | \ 15 | \'95 I recommend testing these tweaks in a temporary account and turning on 'fast user switching'.\ 16 | \ 17 | \'95 You can edit .plist files directly by opening them in xcode.\ 18 | \ 19 | \'95 Use sudo at the beginning of a command to edit locked files.\ 20 | \ 21 | \pard\pardeftab720\sl260 22 | \cf0 \'95 Drag and drop files and folders into a terminal window to add its path.\ 23 | \ 24 | \'95 cd means change directory.\ 25 | \ 26 | \'95 Files with a space in their name require a backslash (DVD\\ Player.app) or quotation marks ("DVD Player.app").\ 27 | \ 28 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 29 | 30 | \b \cf0 Change System Fonts\ 31 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 32 | 33 | \b0 \cf0 \'95 These are the default fonts and sizes.\ 34 | \ 35 | \'95 To use these commands per application replace -g with -app followed by the name of the application (-app Bean NSTitleBarFont).\ 36 | \ 37 | \'95 To use these commands on applications located within a folder first cd into that directory.\ 38 | \ 39 | \'95\'a0'NSBoldSystemFont' safari tab bar.\ 40 | \ 41 | \'95\'a0'NSPaletteFont' utility window title bar.\ 42 | \ 43 | \'95\'a0'NSTitleBarFont' title bar.\ 44 | \pard\pardeftab720\sl260 45 | \cf0 \ 46 | \page \ 47 | \ 48 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 49 | 50 | \b \cf0 Plain Text In Mail\ 51 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 52 | 53 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.mail PreferPlainText -bool TRUE\ 54 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 55 | 56 | \f0\b\fs18 \cf0 \cb1 \ 57 | Disable And Hide Spotlight\ 58 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 59 | 60 | \f1\b0\fs16 \cf0 \cb2 sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search; killall SystemUIServer\ 61 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 62 | 63 | \f0\b\fs18 \cf0 \cb1 \ 64 | Disable And Hide Notifications\ 65 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 66 | 67 | \f1\b0\fs16 \cf0 \cb2 sudo defaults write /System/Library/LaunchAgents/com.apple.notificationcenterui KeepAlive -bool FALSE\ 68 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 69 | 70 | \f0\b\fs18 \cf0 \cb1 \ 71 | Expand Print Panel By Default\ 72 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 73 | 74 | \f1\b0\fs16 \cf0 \cb2 defaults write -g PMPrintingExpandedStateForPrint -bool TRUE\ 75 | 76 | \f0\fs18 \cb1 \ 77 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 78 | 79 | \b \cf0 Expand Save Panel By Default\ 80 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 81 | 82 | \f1\b0\fs16 \cf0 \cb2 defaults write -g NSNavPanelExpandedStateForSaveMode -bool TRUE\ 83 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 84 | 85 | \f0\b\fs18 \cf0 \cb1 \ 86 | Disable Mission Control Animation\ 87 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 88 | 89 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock expose-animation-duration -int 0; killall Dock\ 90 | 91 | \f0\fs18 \cb1 \ 92 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 93 | 94 | \b \cf0 Show All Hidden Files\ 95 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 96 | 97 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.finder AppleShowAllFiles TRUE\ 98 | 99 | \f0\fs18 \cb1 \ 100 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 101 | 102 | \b \cf0 Disable Tooltips\ 103 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 104 | 105 | \f1\b0\fs16 \cf0 \cb2 defaults write -g NSInitialToolTipDelay -int 999999; killall Finder\ 106 | 107 | \f0\fs18 \cb1 \ 108 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 109 | 110 | \b \cf0 Enable Text Selection In Quicklook\ 111 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 112 | 113 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.finder QLEnableTextSelection -bool TRUE; killall Finder\ 114 | 115 | \f0\fs18 \cb1 \ 116 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 117 | 118 | \b \cf0 Disable Quick Look Window Animation\ 119 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 120 | 121 | \f1\b0\fs16 \cf0 \cb2 defaults write -g QLPanelAnimationDuration -float 0; killall Finder\ 122 | 123 | \f0\fs18 \cb1 \ 124 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 125 | 126 | \b \cf0 Disable New Window Animation\ 127 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 128 | 129 | \f1\b0\fs16 \cf0 \cb2 defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool FALSE; killall SystemUIServer\ 130 | 131 | \f0\fs18 \cb1 \ 132 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 133 | 134 | \b \cf0 Disable Dialog Box Animation\ 135 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 136 | 137 | \f1\b0\fs16 \cf0 \cb2 defaults write NSGlobalDomain NSWindowResizeTime 0.001\ 138 | 139 | \f0\fs18 \cb1 \ 140 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 141 | 142 | \b \cf0 Hide Applications\ 143 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 144 | 145 | \f1\b0\fs16 \cf0 \cb2 sudo chflags hidden /path/to/file\ 146 | 147 | \f0\fs18 \cb1 \ 148 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 149 | 150 | \b \cf0 Disable Autosave/Versions And Enable \'92Save-As\'92\ 151 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 152 | 153 | \f1\b0\fs16 \cf0 \cb2 defaults write -g ApplePersistence -bool no\ 154 | 155 | \f0\fs18 \cb1 \ 156 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 157 | 158 | \b \cf0 Disable Rubber Band Scrolling\ 159 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 160 | 161 | \f1\b0\fs16 \cf0 \cb2 defaults write -g NSScrollViewRubberbanding -int 0; killall Finder\ 162 | 163 | \f0\fs18 \cb1 \ 164 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 165 | 166 | \b \cf0 Disable Rubber Band Scrolling In Itunes\ 167 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 168 | 169 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.iTunes disable-elastic-scroll -bool TRUE\ 170 | 171 | \f0\fs18 \cb1 \ 172 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 173 | 174 | \b \cf0 Set Path Bar To Home Directory\ 175 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 176 | 177 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.finder PathBarRootAtHome -bool TRUE; killall Finder\ 178 | 179 | \f0\fs18 \cb1 \ 180 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 181 | 182 | \b \cf0 Show Full Path In Finder Title Bar\ 183 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 184 | 185 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.finder _FXShowPosixPathInTitle -bool TRUE\ 186 | 187 | \f0\fs18 \cb1 \ 188 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 189 | 190 | \b \cf0 Hide 'Automatically Add To Itunes' Folder\ 191 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 192 | 193 | \f1\b0\fs16 \cf0 \cb2 chflags hidden ~/Music/"Automatically Add to iTunes.localized"\ 194 | 195 | \f0\fs18 \cb1 \ 196 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 197 | 198 | \b \cf0 Change Default Screenshot Location\ 199 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 200 | 201 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.screencapture location /path/to/destination; killall SystemUIServer\ 202 | 203 | \f0\fs18 \cb1 \ 204 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 205 | 206 | \b \cf0 Single App Mode\ 207 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 208 | 209 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock single-app -bool TRUE; killall Dock\ 210 | 211 | \f0\fs18 \cb1 \ 212 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 213 | 214 | \b \cf0 Disable Dashboard\ 215 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 216 | 217 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock single-app -bool TRUE; killall Dock\ 218 | 219 | \f0\fs18 \cb1 \ 220 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 221 | 222 | \b \cf0 Trash Folder On Desktop\ 223 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 224 | 225 | \f1\b0\fs16 \cf0 \cb2 ln -s ~/.Trash ~/Desktop/Trash\ 226 | 227 | \f0\fs18 \cb1 \ 228 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 229 | 230 | \b \cf0 Change System Fonts\ 231 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 232 | 233 | \f1\b0\fs16 \cf0 \cb2 defaults write -g NSBoldSystemFont LucidaGrande-Bold\'a0\ 234 | defaults write -g NSBoldSystemFontSize -int 13\'a0\ 235 | defaults write -g NSFixedPitchFont Menlo-Regular\'a0\ 236 | defaults write -g NSFixedPitchFontSize -int 11\'a0\ 237 | defaults write -g NSFont Helvetica\'a0\ 238 | defaults write -g NSFontSize -int 12\'a0\ 239 | defaults write -g NSLabelFont LucidaGrande\'a0\ 240 | defaults write -g NSLabelFontSize -int 10\'a0\ 241 | defaults write -g NSMessageFont LucidaGrande\'a0\ 242 | defaults write -g NSMessageFontSize -int 13\'a0\ 243 | defaults write -g NSPaletteFont LucidaGrande\'a0\ 244 | defaults write -g NSPaletteFontSize -int 10\'a0\ 245 | defaults write -g NSSystemFont LucidaGrande\'a0\ 246 | defaults write -g NSSystemFontSize -int 13\ 247 | defaults write -g NSTitleBarFont LucidaGrande\'a0\ 248 | defaults write -g NSTitleBarFontSize -int 13\'a0\ 249 | defaults write -g NSToolTipsFont LucidaGrande\'a0\ 250 | defaults write -g NSToolTipsFontSize -int 11\ 251 | 252 | \f0\fs18 \cb1 \ 253 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 254 | 255 | \b \cf0 Lock Dock\ 256 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 257 | 258 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.Dock contents-immutable -bool TRUE; killall Dock\ 259 | 260 | \f0\fs18 \cb1 \ 261 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 262 | 263 | \b \cf0 2D Dock\ 264 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 265 | 266 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock no-glass -boolean TRUE; killall Dock\ 267 | 268 | \f0\fs18 \cb1 \ 269 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 270 | 271 | \b \cf0 Disable Dock\ 272 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 273 | 274 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock autohide-time-modifier -int 999999 && defaults write com.apple.Dock autohide-delay -float 999999; killall Dock 275 | \f0\fs18 \cb1 \ 276 | \ 277 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 278 | 279 | \b \cf0 Resize Dock\ 280 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 281 | 282 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock tilesize -int 34\ 283 | 284 | \f0\fs18 \cb1 \ 285 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 286 | 287 | \b \cf0 Show Dock Animation Speed\ 288 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 289 | 290 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock autohide-time-modifier -int 1\ 291 | 292 | \f0\fs18 \cb1 \ 293 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 294 | 295 | \b \cf0 Hide Dock Animation Speed\ 296 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 297 | 298 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.Dock autohide-delay -float 1\ 299 | 300 | \f0\fs18 \cb1 \ 301 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 302 | 303 | \b \cf0 Disable Dock Animation\ 304 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 305 | 306 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock autohide-time-modifier -int 0.1 && defaults write com.apple.Dock autohide-delay -float 0.1; killall Dock\ 307 | 308 | \f0\fs18 \cb1 \ 309 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 310 | 311 | \b \cf0 Transparent Icon For Hidden Applications\ 312 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 313 | 314 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock showhidden -bool TRUE; killall Dock\ 315 | 316 | \f0\fs18 \cb1 \ 317 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 318 | 319 | \b \cf0 Disable Bouncing Applications In Dock\ 320 | \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardeftab720\pardirnatural 321 | 322 | \f1\b0\fs16 \cf0 \cb2 defaults write com.apple.dock no-bouncing -bool TRUE; killall Dock\ 323 | 324 | \f0\fs18 \cb1 \ 325 | \ 326 | \ 327 | \ 328 | \ 329 | 330 | {\*\beandata789c9d935d6f82301486aff157748db752d876b12d8851c1c4cc2099b86497153a65e32ba5cef1ef57444aeb66b68c1bda73fabe4f7b4e6b8d3ed3047c105ac6793684a66e4040b2308fe26c3b84eb6036b88323bb675d39cb69f0e2bba048e292017f3d59cca7000e101a17454210720207f88bf92a00dc0321d78300ee182b1e103a1c0e3aae57e9619ed60b4be4d3bc2094550b6e36e0023d6211e498c65dd90e8f4671c8ec9e66bd93caee631aee62bec242f594474b46f9666d6ff5482a128d45fa146f75f9e68d84ac14324c29ae07c2a09fed934492692d573b3984092e855e4e37f9e9acbf9e3b5d5eb3e28c912da1f6ad85dae1518854636fa5f39fec2cf6a6502e603aceb5ca5140a8f36ca16715f93ff7e64fdc2eda567ce28ebd27f6ead6f78d778ef1e866cf48f9dcf4dfdba71ba591d2490dd334ee0df5c03ff68b5c3a9fb8360e57711aa6958c92572c8f8552b2dfead9d0329c1289f70b4354a4736bbc585e887b2a8a56cf2704670e665830cece7cde24513053ad540756ded6e9e109b6501bf52759b43a0b1d5facddfb02aa1d4161}} --------------------------------------------------------------------------------