| .DS_Store Clean | Clean | clean .DS_Store files | echo -n 'CLIX cleaning .DS_Store files... ';sudo find / -name \.DS_Store -exec rm -f {} \;;echo done. |
| .DS_Store Purge | Purge | purge .DS_Store files | echo -n 'CLIX purging .DS_Store files... ';sudo find / -name \.DS_Store -exec rm -fP {} \;;echo done. |
| .localized Clean | Clean | clean .localized files | echo -n 'CLIX cleaning .localized files... ';sudo find / -name \.localized -exec rm -f {} \;;echo done. |
| .MCXLC Clean | Clean | clean .MCXLC files | echo -n 'CLIX cleaning .MCXLC files... ';sudo find ~ -name \.MCXLC -exec rm -f {} \;;echo done. |
| Apple Mail Clean | Clean | clean Apple Mail files | find ~/Library/Mail -name mbox.SKindex* -exec rm -f {} \;;find ~/Library/Mail -name table_of_contents -exec rm -f {} \; |
| Apple Mail Purge | Purge | purge Apple Mail files | find ~/Library/Mail -name mbox.SKindex* -exec rm -fP {} \;;find ~/Library/Mail -name table_of_contents -exec rm -fP {} \; |
| AppleRecentFolders Clean | Clean | clean global AppleRecentFolders | defaults delete -g AppleRecentFolders;defaults delete -g AppleRecentFolders |
| Browser Caches Clean | Clean | clean all browser caches | echo -n 'CLIX cleaning Camino caches... ';rm -fr ~/Library/Application\ Support/Camino/Cache/*;echo done.;echo -n 'CLIX cleaning Firefox caches... ';rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/Cache/*;rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/Cache.Trash/*;echo done.;echo -n 'CLIX cleaning iCab caches... ';rm -fr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/*;echo done.;echo -n 'CLIX cleaning IE caches... ';rm -fr ~/Library/Caches/MS\ Internet\ Cache/*;rm -fr ~/Library/Preferences/Explorer/Download\ Cache;rm -fr ~/Library/Preferences/Explorer/Temporary\ Files/*;echo done.;echo -n 'CLIX cleaning Mozilla caches... ';rm -fr ~/Library/Mozilla/Profiles/*/*/Cache;echo done.;echo -n 'CLIX cleaning OmniWeb caches... ';rm -fr ~/Library/Caches/com.omnigroup.OmniWeb5/Cache;echo done.;echo -n 'CLIX cleaning Opera caches... ';rm -fr ~/Library/Caches/Opera\ Cache/Cache*;echo done.;echo -n 'CLIX cleaning Shiira caches... ';rm -fr ~/Library/Caches/Shiira/*;echo done. |
| Browser Caches Purge | Purge | purge all browser caches | echo -n 'CLIX purging Camino caches... ';rm -fPr ~/Library/Application\ Support/Camino/Cache/* 2>/dev/null;echo done.;echo -n 'CLIX purging Firefox caches... ';rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/Cache/* 2>/dev/null;rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/Cache.Trash/* 2>/dev/null;echo done.;echo -n 'CLIX purging iCab caches... ';rm -fPr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/* 2>/dev/null;echo done.;echo -n 'CLIX purging IE caches... ';rm -fPr ~/Library/Caches/MS\ Internet\ Cache/* 2>/dev/null;rm -fPr ~/Library/Preferences/Explorer/Download\ Cache 2>/dev/null;rm -fPr ~/Library/Preferences/Explorer/Temporary\ Files/* 2>/dev/null;echo done.;echo -n 'CLIX purging Mozilla caches... ';rm -fPr ~/Library/Mozilla/Profiles/*/*/Cache 2>/dev/null;echo done.;echo -n 'CLIX purging OmniWeb caches... ';rm -fPr ~/Library/Caches/com.omnigroup.OmniWeb5/Cache 2>/dev/null;echo done.;echo -n 'CLIX purging Opera caches... ';rm -fPr ~/Library/Caches/Opera\ Cache/Cache* 2>/dev/null;echo done.;echo -n 'CLIX purging Shiira caches... ';rm -fPr ~/Library/Caches/Shiira/* 2>/dev/null;echo done. |
| Browser Cookies Clean | Clean | clean all browser cookies | echo -n 'CLIX cleaning Camino cookies... ';rm -fr ~/Library/Application\ Support/Camino/cookies.txt*;echo done.;echo -n 'CLIX cleaning iCab cookies... ';rm -fr ~/Library/Preferences/iCab\ Preferences/iCab\ Cookies;echo done.;echo -n 'CLIX cleaning Firefox cookies... ';rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/cookies.txt;echo done.;echo -n 'CLIX cleaning OmniWeb cookies... ';rm -fr ~/Library/Application\ Support/OmniWeb\ 5/Cookies.xml;echo done.;echo -n 'CLIX cleaning Opera cookies... ';rm -fr ~/Library/Preferences/Opera\ Preferences/cookies*;echo done. |
| Browser Cookies Purge | Purge | purge all browser cookies | echo -n 'CLIX purging Camino cookies... ';rm -fPr ~/Library/Application\ Support/Camino/cookies.txt* 2>/dev/null;echo done.;echo -n 'CLIX purging iCab cookies... ';rm -fPr ~/Library/Preferences/iCab\ Preferences/iCab\ Cookies 2>/dev/null;echo done.;echo -n 'CLIX purging Firefox cookies... ';rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/cookies.txt 2>/dev/null;echo done.;echo -n 'CLIX purging OmniWeb cookies... ';rm -fPr ~/Library/Application\ Support/OmniWeb\ 5/Cookies.xml 2>/dev/null;echo done.;echo -n 'CLIX purging Opera cookies... ';rm -fPr ~/Library/Preferences/Opera\ Preferences/cookies* 2>/dev/null;echo done. |
| Browser History Clean | Clean | clean all browser history | echo -n 'CLIX cleaning Camino history... ';rm -fr ~/Library/Application\ Support/Camino/history.dat;echo done.;echo -n 'CLIX cleaning Firefox history... ';rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/history.dat;echo done.;echo -n 'CLIX cleaning iCab history... ';rm -fr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/iCab\ Global\ History;echo done.;echo -n 'CLIX cleaning IE history... ';rm -fr ~/Library/Preferences/Explorer/History.html;echo done.;echo -n 'CLIX cleaning Mozilla history... ';rm -fr ~/Library/Mozilla/Profiles/*/*/history.dat;echo done.;echo -n 'CLIX cleaning OmniWeb history... ';rm -fr ~/Library/Application\ Support/OmniWeb\ 5/History*;echo done.;echo -n 'CLIX cleaning Opera history... ';rm -fr ~/Library/Preferences/Opera\ Preferences/Opera\ Direct\ History;rm -fr ~/Library/Preferences/Opera\ Preferences/Opera\ Global\ History;echo done.;echo -n 'CLIX cleaning Safari history... ';rm -fr ~/Library/Safari/History.plist;echo done.;echo -n 'CLIX cleaning Shiira history... ';rm -fr ~/Library/Shiira/History.plist;echo done. |
| Browser History Purge | Purge | purge all browser history | echo -n 'CLIX purging Camino history... ';rm -fPr ~/Library/Application\ Support/Camino/history.dat 2>/dev/null;echo done.;echo -n 'CLIX purging Firefox history... ';rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/history.dat 2>/dev/null;echo done.;echo -n 'CLIX purging iCab history... ';rm -fPr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/iCab\ Global\ History 2>/dev/null;echo done.;echo -n 'CLIX purging IE history... ';rm -fPr ~/Library/Preferences/Explorer/History.html 2>/dev/null;echo done.;echo -n 'CLIX purging Mozilla history... ';rm -fPr ~/Library/Mozilla/Profiles/*/*/history.dat 2>/dev/null;echo done.;echo -n 'CLIX purging OmniWeb history... ';rm -fPr ~/Library/Application\ Support/OmniWeb\ 5/History* 2>/dev/null;echo done.;echo -n 'CLIX purging Opera history... ';rm -fPr ~/Library/Preferences/Opera\ Preferences/Opera\ Direct\ History 2>/dev/null;rm -fPr ~/Library/Preferences/Opera\ Preferences/Opera\ Global\ History 2>/dev/null;echo done.;echo -n 'CLIX purging Safari history... ';rm -fPr ~/Library/Safari/History.plist 2>/dev/null;echo done.;echo -n 'CLIX purging Shiira history... ';rm -fPr ~/Library/Shiira/History.plist 2>/dev/null;echo done. |
| Builder Clean | Clean | clean Project Builder and Interface Builder preferences | defaults delete com.apple.InterfaceBuilder NSDefaultOpenDirectory;defaults delete com.apple.InterfaceBuilder NSWindow\ Frame\ NSColorPanel;defaults delete com.apple.InterfaceBuilder NSWindow\ Frame\ NSFontPanel;defaults delete com.apple.InterfaceBuilder NSRecentDocumentRecords;defaults delete com.apple.ProjectBuilder NSRecentDocumentRecords;defaults delete com.apple.ProjectBuilder NSFontPanelPreviewHeight;defaults delete com.apple.ProjectBuilder NSTableView\ Columns\ CVSModuleTab |
| Caches Clean | Clean | clean caches | find ~/Library/Caches -name com.apple.preferencepanes.cache -exec rm -f {} \;;rm -fr ~/Library/Caches/com.apple.addressservices;rm -fr ~/Library/Caches/Desktop |
| Caches Purge | Purge | purge caches | find ~/Library/Caches -name com.apple.preferencepanes.cache -exec rm -fP {} \;;rm -fPr ~/Library/Caches/com.apple.addressservices;rm -fPr ~/Library/Caches/Desktop |
| Calculator Clean | Clean | clean Calculator files | rm -fr ~/Library/Application\ Support/Calculator ~/Library/Preferences/com.apple.calculator.plist |
| Calculator Purge | Purge | purge Calculator files | rm -fPr ~/Library/Application\ Support/Calculator ~/Library/Preferences/com.apple.calculator.plist |
| Camino Caches Clean | Clean | clean Camino caches | echo -n 'CLIX cleaning Camino caches... ';rm -fr ~/Library/Application\ Support/Camino/Cache/*;echo done. |
| Camino Caches Purge | Purge | purge Camino caches | echo -n 'CLIX purging Camino caches... ';rm -fPr ~/Library/Application\ Support/Camino/Cache/* 2>/dev/null;echo done. |
| Camino Clean | Clean | clean Camino files | rm -fr /Library/Mozilla ~/Library/Mozilla |
| Camino Purge | Purge | purge Camino files | rm -fPr /Library/Mozilla ~/Library/Mozilla |
| Clean All Caches | Clean | clean all caches | sudo rm /Library/Caches/*;sudo rm /System/Library/Caches/*;sudo find ~/Library/Caches -type f -exec rm {} \;;sudo sync;sudo sync |
| Clean Caches & Swap | Clean | clean caches and swap (and immediately shut down or reboot) | sudo rm /Library/Caches/*;sudo rm /System/Library/Caches/*;sudo find ~/Library/Caches -type f -exec rm {} \;;sudo rm -f /private/var/vm/swapfile*;sudo sync;sudo sync |
| Clean Sweep Reboot | Clean | clean caches and swap and reboot | sudo rm -r /Library/Caches/*;sudo rm -r /System/Library/Caches/*;sudo find ~/Library/Caches -type f -exec rm {} \;;sudo rm -f /private/var/vm/swapfile*;sudo sync;sudo sync;sudo reboot |
| Clean Sweep Shutdown | Clean | clean caches and swap and shutdown | sudo rm -r /Library/Caches/*;sudo rm -r /System/Library/Caches/*;sudo find ~/Library/Caches -type f -exec rm {} \;;sudo rm -f /private/var/vm/swapfile*;sudo sync;sudo sync;sudo shutdown now |
| Delete Find Indexes / | Clean | delete all Find index files on hard drive | sudo find / -name \.FBCIndex -exec rm -f {} \; |
| Delete Find Indexes ~ | Clean | delete all Find index files in home directory | sudo find ~ -name \.FBCIndex -exec rm -f {} \; |
| Desktop File Clean | Clean | clean Desktop files | sudo rm -f /Desktop\ D* |
| Desktop File Purge | Purge | purge Desktop files | sudo rm -fP /Desktop\ D* |
| Disk Usage II Clean | Clean | clean temporary disk usage file | sudo rm -f /tmp/du.rtx |
| Disk Usage II Purge | Clean | purge temporary disk usage file | sudo rm -fP /tmp/du.rtx |
| Downloads Clean | Clean | clean all browser download records | echo -n 'CLIX cleaning Firefox records... ';rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/downloads.rdf;echo done.;echo -n 'CLIX cleaning iCab records... ';rm -fr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/iCab\ DL-Manager;echo done.;echo -n 'CLIX cleaning Mozilla records... ';rm -fr ~/Library/Mozilla/Profiles/*/*/downloads.rdf;echo done.;echo -n 'CLIX cleaning OmniWeb records... ';defaults delete com.omnigroup.OmniWeb5 OWPersistentDownloadedFileFossils 2>/dev/null;echo done.;echo -n 'CLIX cleaning Opera records... ';rm -fr ~/Library/Preferences/Opera\ Preferences/download.dat;echo done.;echo -n 'CLIX cleaning Safari records... ';rm -fr ~/Library/Safari/Downloads.plist;echo done.;echo -n 'CLIX cleaning Shiira records... ';rm -fr ~/Library/Shiira/Downloads.plist;echo done. |
| Downloads Purge | Purge | purge all browser download records | echo -n 'CLIX purging Firefox records... ';rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/downloads.rdf 2>/dev/null;echo done.;echo -n 'CLIX purging iCab records... ';rm -fPr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/iCab\ DL-Manager 2>/dev/null;echo done.;echo -n 'CLIX purging Mozilla records... ';rm -fPr ~/Library/Mozilla/Profiles/*/*/downloads.rdf 2>/dev/null;echo done.;echo -n 'CLIX cleaning OmniWeb records... ';defaults delete com.omnigroup.OmniWeb5 OWPersistentDownloadedFileFossils 2>/dev/null;echo done.;echo -n 'CLIX purging Opera records... ';rm -fPr ~/Library/Preferences/Opera\ Preferences/download.dat 2>/dev/null;echo done.;echo -n 'CLIX purging Safari records... ';rm -fPr ~/Library/Safari/Downloads.plist 2>/dev/null;echo done.;echo -n 'CLIX purging Shiira records... ';rm -fPr ~/Library/Shiira/Downloads.plist 2>/dev/null;echo done. |
| DVD Script Clean | Clean | clean DVD scripts | rm -fr ~/Library/Application\ Support/DVD\ Player\ Scripts |
| DVD Script Purge | Purge | purge DVD scripts | rm -fPr ~/Library/Application\ Support/DVD\ Player\ Scripts |
| File Panel Prefs Clean | Clean | clean file panel preferences | defaults delete -g NSWindow\ Frame\ NXOpenPanel;defaults delete -g NSWindow\ Frame\ NXSavePanel |
| File Panel Prefs Read | Clean | read file panel preferences (if they exist) | defaults read -g NSWindow\ Frame\ NXOpenPanel;defaults read -g NSWindow\ Frame\ NXSavePanel |
| Finder Clean | Clean | clean finder preferences | defaults delete com.apple.finder ClipboardWindowBounds;defaults delete com.apple.finder CopyProgressWindowLocation;defaults delete com.apple.finder recent-folders |
| Firefox Caches Clean | Clean | clean Firefox caches | echo -n 'CLIX cleaning Firefox caches... ';rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/Cache/*;rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/Cache.Trash/*;echo done. |
| Firefox Caches Purge | Purge | purge Firefox caches | echo -n 'CLIX purging Firefox caches... ';rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/Cache/* 2>/dev/null;rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/Cache.Trash/* 2>/dev/null;echo done. |
| Firefox Downloads Clean | Clean | clean Firefox download records | echo -n 'CLIX cleaning Firefox records... ';rm -fr ~/Library/Application\ Support/Firefox/Profiles/*/downloads.rdf;echo done. |
| Firefox Downloads Purge | Purge | purge Firefox download records | echo -n 'CLIX purging Firefox records... ';rm -fPr ~/Library/Application\ Support/Firefox/Profiles/*/downloads.rdf 2>/dev/null;echo done. |
| Full Circle Clean | Clean | clean Full Circle files | rm -fr ~/Library/Application\ Support/FullCircle;rm -fr ~/Library/Preferences/com.fullsoft.talkback.plist |
| Full Circle Purge | Purge | purge Full Circle files | rm -fPr ~/Library/Application\ Support/FullCircle;rm -fPr ~/Library/Preferences/com.fullsoft.talkback.plist |
| iCab Caches Clean | Clean | clean iCab caches | echo -n 'CLIX cleaning iCab caches... ';rm -fr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/*;echo done. |
| iCab Caches Purge | Purge | purge iCab caches | echo -n 'CLIX purging iCab caches... ';rm -fPr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/* 2>/dev/null;echo done. |
| iCab Downloads Clean | Clean | clean iCab download records | echo -n 'CLIX cleaning iCab records... ';rm -fr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/iCab\ DL-Manager;echo done. |
| iCab Downloads Purge | Purge | purge iCab download records | echo -n 'CLIX purging iCab records... ';rm -fPr ~/Library/Preferences/iCab\ Preferences/iCab\ Cache/iCab\ DL-Manager 2>/dev/null;echo done. |
| Icon Cache Clean | Clean | clean Dock icon cache | find /Library/Caches -name com.apple.dock.iconcache.* -exec rm -f {} \; |
| Icon Cache Purge | Purge | purge Dock icon cache | find /Library/Caches -name com.apple.dock.iconcache.* -exec rm -fP {} \; |
| IE Caches Clean | Clean | clean IE caches | echo -n 'CLIX cleaning IE caches... ';rm -fr ~/Library/Caches/MS\ Internet\ Cache/*;rm -fr ~/Library/Preferences/Explorer/Download\ Cache;rm -fr ~/Library/Preferences/Explorer/Temporary\ Files/*;echo done. |
| IE Caches Purge | Purge | purge IE caches | echo -n 'CLIX purging IE caches... ';rm -fPr ~/Library/Caches/MS\ Internet\ Cache/* 2>/dev/null;rm -fPr ~/Library/Preferences/Explorer/Download\ Cache 2>/dev/null;rm -fPr ~/Library/Preferences/Explorer/Temporary\ Files/* 2>/dev/null;echo done. |
| Launch Services Caches Purge | Purge | purge launch services caches | sudo rm -fP /Library/Caches/com.apple.LaunchServices.LocalCache.csstore;rm -fP ~/Library/Caches/com.apple.LaunchServices.UserCache.csstore |
| Launch Services Clean | Clean | clean launch services caches | sudo rm -f /Library/Caches/com.apple.LaunchServices.LocalCache.csstore;rm -f ~/Library/Caches/com.apple.LaunchServices.UserCache.csstore |
| Mozilla Caches Clean | Clean | clean Mozilla caches | echo -n 'CLIX cleaning Mozilla caches... ';rm -fr ~/Library/Mozilla/Profiles/*/*/Cache;echo done. |
| Mozilla Caches Purge | Purge | purge Mozilla caches | echo -n 'CLIX purging Mozilla caches... ';rm -fPr ~/Library/Mozilla/Profiles/*/*/Cache 2>/dev/null;echo done. |
| Mozilla Downloads Clean | Clean | clean Mozilla download records | echo -n 'CLIX cleaning Mozilla records... ';rm -fr ~/Library/Mozilla/Profiles/*/*/downloads.rdf;echo done. |
| Mozilla Downloads Purge | Purge | purge Mozilla download records | echo -n 'CLIX purging Mozilla records... ';rm -fr ~/Library/Mozilla/Profiles/*/*/downloads.rdf 2>/dev/null;echo done. |
| OmniWeb Caches Clean | Clean | clean OmniWeb caches | echo -n 'CLIX cleaning OmniWeb caches... ';rm -fr ~/Library/Caches/com.omnigroup.OmniWeb5/Cache;echo done. |
| OmniWeb Caches Purge | Purge | purge OmniWeb caches | echo -n 'CLIX purging OmniWeb caches... ';rm -fPr ~/Library/Caches/com.omnigroup.OmniWeb5/Cache 2>/dev/null;echo done. |
| OmniWeb Downloads Clean | Clean | clean OmniWeb download records | echo -n 'CLIX cleaning OmniWeb records... ';defaults delete com.omnigroup.OmniWeb5 OWPersistentDownloadedFileFossils 2>/dev/null;echo done. |
| Opera Caches Clean | Clean | clean Opera caches | echo -n 'CLIX cleaning Opera caches... ';rm -fr ~/Library/Caches/Opera\ Cache/Cache*;echo done. |
| Opera Caches Purge | Purge | purge Opera caches | echo -n 'CLIX purging Opera caches... ';rm -fPr ~/Library/Caches/Opera\ Cache/Cache* 2>/dev/null;echo done. |
| Opera Downloads Clean | Clean | clean Opera download records | echo -n 'CLIX cleaning Opera records... ';rm -fr ~/Library/Preferences/Opera\ Preferences/download.dat;echo done. |
| Opera Downloads Purge | Purge | purge Opera download records | echo -n 'CLIX purging Opera records... ';rm -fPr ~/Library/Preferences/Opera\ Preferences/download.dat 2>/dev/null;echo done. |
| Pref Panes Cache Clean | Clean | clean preference panes cache | find ~/Library/Caches -name com.apple.preferencepanes.cache -exec rm -f {} \; |
| Pref Panes Cache Purge | Purge | purge preference panes cache | find ~/Library/Caches -name com.apple.preferencepanes.cache -exec rm -fP {} \; |
| Receipts Clean | Clean | clean receipts | rm -fr /Library/Receipts/* |
| Receipts Purge | Purge | purge receipts | rm -fPr /Library/Receipts/* |
| Safari Clean | Clean | clean Safari files | rm -fr ~/Library/Caches/Safari ~/Library/Cookies ~/Library/Safari/Downloads.plist ~/Library/Safari/History.plist ~/Library/Safari/Icons |
| Safari Downloads Clean | Clean | clean Safari download records | echo -n 'CLIX cleaning Safari records... ';rm -fr ~/Library/Safari/Downloads.plist;echo done. |
| Safari Downloads Purge | Purge | purge Safari download records | echo -n 'CLIX purging Safari records... ';rm -fPr ~/Library/Safari/Downloads.plist 2>/dev/null;echo done. |
| Safari Icons Clean | Clean | clean Safari icons | echo -n 'CLIX cleaning Safari icons... ';rm -fr ~/Library/Safari/Icons/* 2>/dev/null;echo done. |
| Safari Icons Purge | Purge | purge Safari icons | echo -n 'CLIX purging Safari icons... ';rm -fPr ~/Library/Safari/Icons/* 2>/dev/null;echo done. |
| Safari Purge | Purge | purge Safari files | rm -fPr ~/Library/Caches/Safari ~/Library/Cookies ~/Library/Safari/Downloads.plist ~/Library/Safari/History.plist ~/Library/Safari/Icons |
| Shiira Caches Clean | Clean | clean Shiira caches | echo -n 'CLIX cleaning Shiira caches... ';rm -fr ~/Library/Caches/Shiira/*;echo done. |
| Shiira Caches Purge | Purge | purge Shiira caches | echo -n 'CLIX purging Shiira caches... ';rm -fPr ~/Library/Caches/Shiira/* 2>/dev/null;echo done. |
| Shiira Downloads Clean | Clean | clean Shiira download records | echo -n 'CLIX cleaning Shiira records... ';rm -fr ~/Library/Shiira/Downloads.plist;echo done. |
| Shiira Downloads Purge | Purge | purge Shiira download records | echo -n 'CLIX purging Shiira records... ';rm -fPr ~/Library/Shiira/Downloads.plist 2>/dev/null;echo done. |
| tmp Clean | Clean | clean /tmp | sudo rm -fr /tmp/*;sudo rm -f /tmp/.modemOnHold |
| tmp Purge | Purge | purge /tmp | sudo rm -fPr /tmp/*;sudo rm -f /tmp/.modemOnHold |
| Accept Cookies Always | Safari | set Safari to always accept cookies | defaults write com.apple.WebFoundation WebAcceptCookies always |
| Accept Cookies Current | Safari | set Safari to only accept cookies from your current page | defaults write com.apple.WebFoundation WebAcceptCookies current\ page |
| Accept Cookies Never | Safari | set Safari to never accept cookies | defaults write com.apple.WebFoundation WebAcceptCookies never |
| Accept Cookies Read | Safari | read Safari's accept cookies policy | defaults read com.apple.WebFoundation WebAcceptCookies |
| Accept Cookies Restore | Safari | restore accept cookies toggle | defaults delete com.apple.WebFoundation WebAcceptCookies |
| Addresses | Mail | show addresses in AddressBook | strings ~/Library/Application\ Support/AddressBook/AddressBook.data | grep -v bplist | grep @ |
| Always Show Tabs Off | Safari | turn off always showing tab bar | defaults write com.apple.Safari AlwaysShowTabBar -bool NO |
| Always Show Tabs On | Safari | turn on always showing tab bar | defaults write com.apple.Safari AlwaysShowTabBar -bool YES |
| Always Show Tabs Read | Safari | read status of always showing tab bar | defaults read com.apple.Safari AlwaysShowTabBar |
| Always Show Tabs Restore | Safari | restore default status of always showing tab bar | defaults delete com.apple.Safari AlwaysShowTabBar |
| AM/PM Designation | .Global | show AM/PM designation | defaults read -g NSAMPMDesignation |
| Animate Info Panes Off | Finder | turn info pane animation off | defaults delete com.apple.finder AnimateInfoPanes;killall Finder |
| Animate Info Panes On | Finder | turn info pane animation on | defaults write com.apple.finder AnimateInfoPanes -bool YES;killall Finder |
| Animate Info Panes Read | Finder | read info pane animation flag | defaults read com.apple.finder AnimateInfoPanes |
| Animate Window Zoom Off | Finder | turn window zoom animation off | defaults delete com.apple.finder AnimateWindowZoom;killall Finder |
| Animate Window Zoom On | Finder | turn info pane animation on | defaults write com.apple.finder AnimateWindowZoom -bool YES;killall Finder |
| Animate Window Zoom Read | Finder | read window zoom animation flag | defaults read com.apple.finder AnimateWindowZoom |
| Antialias Smooth Fonts Defaults | Safari | restore antialiasing and smooth font defaults | defaults delete com.apple.Safari AppleAntiAliasingThreshold;defaults delete com.apple.Safari AppleSmoothFontsSizeThreshold |
| Antialias Smooth Fonts High | Safari | set antialiasing and smooth font values high | defaults write com.apple.Safari AppleAntiAliasingThreshold -integer 8;defaults write com.apple.Safari AppleSmoothFontsSizeThreshold -integer 8 |
| Antialias Smooth Fonts High | Safari | set antialiasing and smooth font values high | defaults write com.apple.Safari AppleAntiAliasingThreshold -int 8;defaults write com.apple.Safari AppleSmoothFontsSizeThreshold -int 8 |
| Antialias Smooth Fonts Low | Safari | set antialiasing and smooth font values low | defaults write com.apple.Safari AppleAntiAliasingThreshold -integer 2;defaults write com.apple.Safari AppleSmoothFontsSizeThreshold -integer 2 |
| Antialias Smooth Fonts Low | Safari | set antialiasing and smooth font values low | defaults write com.apple.Safari AppleAntiAliasingThreshold -int 2;defaults write com.apple.Safari AppleSmoothFontsSizeThreshold -int 2 |
| Antialias Smooth Fonts Read | Safari | read antialiasing and smooth font settings (if they exist) | defaults read com.apple.Safari AppleAntiAliasingThreshold;defaults read com.apple.Safari AppleSmoothFontsSizeThreshold |
| Antialiasing Threshold | .Global | show antialiasing threshold | defaults read -g AppleAntiAliasingThreshold |
| Append AMPM | Menu Bar Clock | read appending 'AM' and 'PM' status | defaults read com.apple.MenuBarClock AppendAMPM |
| Autohide Off | Dock | turn hiding off | defaults delete com.apple.dock autohide;killall Dock |
| Autohide On | Dock | turn hiding on | defaults write com.apple.dock autohide -bool YES;killall Dock |
| Autohide Read | Dock | read hiding flag | defaults read com.apple.dock autohide |
| Autolaunched Application Dictionary | Login Window | show autolaunched application dictionary | defaults read loginwindow AutoLaunchedApplicationDictionary |
| Autoopen Off | Safari | turn off automatically opening 'safe' downloads (VERY SMART) | defaults write com.apple.Safari AutoOpenSafeDownloads -bool NO |
| Autoopen On | Safari | turn on automatically opening 'safe' downloads (REALLY DUMB) | defaults write com.apple.Safari AutoOpenSafeDownloads -bool YES |
| Autoopen Read | Safari | read status of automatically opening 'safe' downloads | defaults read com.apple.Safari AutoOpenSafeDownloads |
| Autoopen Restore | Safari | restore default status of automatically opening 'safe' downloads | defaults delete com.apple.Safari AutoOpenSafeDownloads |
| Beep Feedback Off | .Global | turn beep feedback off | defaults write -g com.apple.sound.beep.feedback -int 0;killall Finder |
| Beep Feedback On | .Global | turn beep feedback on | defaults write -g com.apple.sound.beep.feedback -int 1;killall Finder |
| Beep Feedback Read | .Global | read beep feedback flag | defaults read -g com.apple.sound.beep.feedback |
| Beep Feedback Restore | .Global | restore default beep feedback | defaults delete -g com.apple.sound.beep.feedback;killall Finder |
| Beep Sound | .Global | show path to default beep sound | defaults read -g com.apple.sound.beep.sound |
| Bluetooth Autodetect On | Address Book | turn on bluetooth detect | defaults write com.apple.AddressBook ABCheckForPhoneNextTime -bool YES |
| Bluetooth Autodetect Restore | Address Book | restore default bluetooth detect behaviour | defaults delete com.apple.AddressBook ABCheckForPhoneNextTime |
| Bookmarks Date | Safari | read bookmarks date | defaults read com.apple.Safari BuiltInBookmarksDate |
| Bookmarks Tag | Safari | read bookmarks tag | defaults read com.apple.Safari BuiltInBookmarksTag |
| Build Version Stamp Number | Login Window | show build version stamp as number | defaults read loginwindow BuildVersionStampAsNumber |
| Build Version Stamp String | Login Window | show build version stamp as string | defaults read loginwindow BuildVersionStampAsString |
| Caches Off | Safari | stop caching | rm -fr ~/Library/Caches/Safari;ln -s /dev/null ~/Library/Caches/Safari |
| Caches On | Safari | allow caching | rm ~/Library/Caches/Safari |
| Close View Off | Desktop | turn off close view (desktop magnifier with option-cmd-[-|+]) | defaults delete com.apple.universalaccess closeViewDriver |
| Close View On | Desktop | turn on close view (desktop magnifier with option-cmd-[-|+]) | defaults write com.apple.universalaccess closeViewDriver -bool YES |
| Cmd-Comma | User Keys | set cmd-comma as shortcut for 'Preferences...' | defaults write -g NSUserKeyEquivalents -dict-add "Preferences..." "@\U002C" |
| Colour Variant Aqua | .Global | set color variant to Aqua | defaults write -g AppleAquaColorVariant -int 1;killall Finder |
| Colour Variant Graphite | .Global | set color variant to graphite | defaults write -g AppleAquaColorVariant -int 6;killall Finder |
| Colour Variant Read | .Global | read color variant | defaults read -g AppleAquaColorVariant |
| Command Option Space | HI Toolbox | show status of cmd-option-space toggle | defaults read com.apple.HIToolbox AppleCommandOptionSpace |
| Configuration URL | iDisk | show URL for iDisk configuration | defaults read com.apple.internetpref configurationURL |
| Ctrl Cmd Quit | User Keys | set ctrl-cmd-Q as quit shortcut (Safari as example) | defaults write -g NSUserKeyEquivalents -dict-add "Quit Safari" "^@Q" |
| Ctrl-Shift-Option-Cmd-Delete | User Keys | set ctrl-shift-option-cmd-delete as shortcut for 'Delete' (using all four modifiers) | defaults write -g NSUserKeyEquivalents -dict-add "Delete" "^$~@\U0008" |
| Dashboard Disable | Dashboard | disable Dashboard | defaults write com.apple.dashboard mcx-disabled -boolean YES |
| Dashboard Enable | Dashboard | enable Dashboard | defaults write com.apple.dashboard mcx-disabled -boolean NO |
| Dashboard Read | Dashboard | show Dashboard status | defaults read com.apple.dashboard mcx-disabled |
| Dashboard Restore | Dashboard | restore default Dashboard behaviour | defaults delete com.apple.dashboard mcx-disabled |
| Date Format | .Global | show date format | defaults read -g NSDateFormatString |
| Date Order | HI Toolbox | show system date order | defaults read com.apple.HIToolbox AppleDateOrder |
| Debug Menu Off | Address Book | don't show debug menu | defaults delete com.apple.addressbook ABShowDebugMenu |
| Debug Menu On | Address Book | show debug menu | defaults write com.apple.addressbook ABShowDebugMenu -bool YES |
| Debug Menu Read | Address Book | read debug menu flag | defaults read com.apple.addressbook ABShowDebugMenu |
| Default Open Directory | Safari | read default open directory | defaults read com.apple.Safari NSDefaultOpenDirectory |
| Digital Clock | Menu Bar Clock | read digital clock status | defaults read com.apple.MenuBarClock ClockDigital |
| Disable Animations | Finder | turn animations off | defaults write com.apple.finder DisableAllAnimations -bool YES;killall Finder |
| Display Seconds | Menu Bar Clock | read seconds display status | defaults read com.apple.MenuBarClock DisplaySeconds |
| Drag Delay | Desktop | show drag delay | defaults read -g NSDragAndDropTextDelay |
| Drag Delay 100 | Desktop | set drag delay to 100 milliseconds | defaults write -g NSDragAndDropTextDelay -int 100 |
| Drag Delay Disable | Desktop | disable drag (set delay to negative value) | defaults write -g NSDragAndDropTextDelay -int -1 |
| Drag Delay Restore | Desktop | restore default drag delay | defaults delete -g NSDragAndDropTextDelay |
| DVD Player Debug Off | DVD Player | disable debug menu | defaults delete com.apple.dvdplayer EnableDebugging |
| DVD Player Debug On | DVD Player | enable debug menu | defaults write com.apple.dvdplayer EnableDebugging -bool YES |
| DVD Player Debug Read | DVD Player | read debug menu flag | defaults read com.apple.dvdplayer EnableDebugging |
| Enable Animations | Finder | turn animations on | defaults delete com.apple.finder DisableAllAnimations;killall Finder |
| Enabled | Menu Bar Clock | read status of menu bar clock | defaults read com.apple.MenuBarClock ClockEnabled |
| Expos Blob Off | Expos | disable Expos blob | defaults write com.apple.dock wvous-floater -bool NO;killall Dock |
| Expos Blob On | Expos | enable Expos blob | defaults write com.apple.dock wvous-floater -bool YES; killall Dock |
| Expos Corners Off | Expos | remove semicircles in Expos corners | defaults write com.apple.dock wvous-showcorners -bool NO; killall Dock |
| Expos Corners On | Expos | show semicircles in Expos corners | defaults write com.apple.dock wvous-showcorners -bool YES; killall Dock |
| Externs In Existing Off | Safari | turn off opening external links in existing window | defaults write com.apple.Safari OpenExternalLinksInExistingWindow -bool NO |
| Externs In Existing On | Safari | turn on opening external links in existing window | defaults write com.apple.Safari OpenExternalLinksInExistingWindow -bool YES |
| Externs In Existing Read | Safari | read toggle of opening external links in existing window | defaults read com.apple.Safari OpenExternalLinksInExistingWindow |
| Externs In Existing Restore | Safari | restore default behaviour for opening external links in existing window | defaults delete com.apple.Safari OpenExternalLinksInExistingWindow |
| Favicons Off | Safari | stop storing of favicons | rm -fr ~/Library/Safari/Icons;ln -s /dev/null ~/Library/Safari/Icons |
| Favicons On | Safari | allow storing of favicons | rm ~/Library/Safari/Icons |
| Finder Quit Off | Finder | turn Finder Quit menu item off | defaults delete com.apple.finder QuitMenuItem;killall Finder |
| Finder Quit On | Finder | turn Finder Quit menu item on | defaults write com.apple.finder QuitMenuItem -bool YES;killall Finder |
| Finder Quit Read | Finder | read Finder Quit menu item flag | defaults read com.apple.finder QuitMenuItem |
| Flash Separators | Menu Bar Clock | read flash separators status | defaults read com.apple.MenuBarClock FlashSeparators |
| Flash Update Version | Desktop | show Flash update version | curl -s http://fpdownload.macromedia.com /pub/flashplayer/update/current/install/version.xml | grep 'update version' |
| Focus Follow Mouse On | Terminal | make terminal window focus follow the mouse | defaults write com.apple.terminal FocusFollowsMouse -string YES |
| Focus Follow Mouse Read | Terminal | read terminal window focus status | defaults read com.apple.terminal FocusFollowsMouse |
| Focus Follow Mouse Restore | Terminal | restore normal terminal window focus | defaults delete com.apple.terminal FocusFollowsMouse |
| Google Off | Safari | remove Google from address bar | defaults write com.apple.Safari AddressBarIncludesGoogle -bool NO |
| Google On | Safari | put Google on address bar | defaults write com.apple.Safari AddressBarIncludesGoogle -bool YES |
| Google Read | Safari | read status of Google in address bar | defaults read com.apple.Safari AddressBarIncludesGoogle |
| Google Restore | Safari | restore default status of Google in address bar | defaults delete com.apple.Safari AddressBarIncludesGoogle |
| IE Favorites Imported Off | Safari | flag IE favorites not imported | defaults write com.apple.Safari IEFavoritesWereImported -bool NO |
| IE Favorites Imported On | Safari | flag IE favorites imported | defaults write com.apple.Safari IEFavoritesWereImported -bool YES |
| IE Favorites Imported Read | Safari | read IE favorites were imported flag | defaults read com.apple.Safari IEFavoritesWereImported |
| IE Favorites Imported Restore | Safari | restore default IE favorites imported flag | defaults delete com.apple.Safari IEFavoritesWereImported |
| Ignore Typing Filter | .Global | show ignore typing filter | defaults read -g com.apple.mouse.ignoreTypingFilter |
| Include Debug Menu Off | Safari | don't show debug menu | defaults write com.apple.Safari IncludeDebugMenu -bool NO |
| Include Debug Menu On | Safari | show debug menu | defaults write com.apple.Safari IncludeDebugMenu -bool YES |
| Include Debug Menu Read | Safari | read debug menu flag | defaults read com.apple.Safari IncludeDebugMenu |
| Include Debug Menu Restore | Safari | restore default debug menu status | defaults delete com.apple.Safari IncludeDebugMenu |
| Index Publish | Spotlight | publish indexes to drive | sudo mdutil -p / |
| Index Status | Spotlight | show Spotlight index status | sudo mdutil -s / |
| Indexing Off | Spotlight | turn Spotlight indexing off | sudo mdutil -i off / |
| Indexing On | Spotlight | turn Spotlight indexing on | sudo mdutil -i on / |
| Initial Timed Delay Minimise | Safari | minimise Safari initial timed delay | defaults write com.apple.Safari WebKitInitialTimedLayoutDelay 0.000001 |
| Initial Timed Delay Read | Safari | read Safari initial timed delay | defaults read com.apple.Safari WebKitInitialTimedLayoutDelay |
| Initial Timed Delay Restore | Safari | restore Safari initial timed delay | defaults delete com.apple.Safari WebKitInitialTimedLayoutDelay |
| iPod Copy | iPod | copy iPod songs to hard drive ( is the iPod volume) | cp -R /Volumes//iPod_Control ~/Documents |
| Itlc General Flags | HI Toolbox | show system itlc general flags | defaults read com.apple.HIToolbox AppleItlcGenFlags |
| Java Off | Safari | turn off Java | defaults write com.apple.Safari WebKitJavaEnabled -bool NO |
| Java On | Safari | turn on Java | defaults write com.apple.Safari WebKitJavaEnabled -bool YES |
| Java Read | Safari | read status of Java | defaults read com.apple.Safari WebKitJavaEnabled |
| Java Restore | Safari | restore default Java status | defaults delete com.apple.Safari WebKitJavaEnabled |
| JavaScript Off | Safari | turn off JavaScript | defaults write com.apple.Safari WebKitJavaScriptEnabled -bool NO |
| JavaScript On | Safari | turn on JavaScript | defaults write com.apple.Safari WebKitJavaScriptEnabled -bool YES |
| JavaScript Read | Safari | read status of JavaScript | defaults read com.apple.Safari WebKitJavaScriptEnabled |
| JavaScript Restore | Safari | restore default JavaScript status | defaults delete com.apple.Safari WebKitJavaScriptEnabled |
| Key Equivalents | User Keys | read key equivalents | defaults read -g NSUserKeyEquivalents |
| Key Equivalents Remove | User Keys | delete all key equivalents | defaults delete -g NSUserKeyEquivalents |
| Languages | .Global | show preferred languages in order of preference | defaults read -g AppleLanguages |
| Large Size Read | Dock | read icon large size | defaults read com.apple.dock largesize |
| Last Version Run | Safari | read last version run | defaults read com.apple.Safari LastVersionRun |
| Launch Animation Off | Dock | turn launch animation off | defaults write com.apple.dock launchanim -bool NO;killall Dock |
| Launch Animation On | Dock | turn launch animation on | defaults write com.apple.dock launchanim -bool YES;killall Dock |
| Launch Animation Read | Dock | read launch animation flag | defaults read com.apple.dock launchanim |
| Launch Animation Restore | Dock | restore default launch animation flag | defaults delete com.apple.dock launchanim;killall Dock |
| Local Info Default | iTunes | make click (w/o option) default to show local info | defaults write com.apple.iTunes invertStoreLinks -bool YES |
| Local Info Restore | iTunes | restore default click local info click action | defaults delete com.apple.iTunes invertStoreLinks |
| Magnification Off | Dock | turn off Dock magnification | defaults delete com.apple.dock magnification;killall Dock |
| Magnification On | Dock | turn on Dock magnification | defaults write com.apple.dock magnification -bool YES;killall Dock |
| Magnification Read | Dock | read magnification flag | defaults read com.apple.dock magnification |
| Make File Executable | Terminal | makes a text file a UNIX executable | chmod +x[path to file] |
| Max Label Lines 1 | Finder | set maximum label lines to 1 | defaults write com.apple.finder MaximumLabelLines -int 1;killall Finder |
| Max Label Lines 1 | Finder | set maximum label lines to 1 | defaults write com.apple.finder MaximumLabelLines -integer 1;killall Finder |
| Max Label Lines 2 | Finder | set maximum label lines to 2 | defaults write com.apple.finder MaximumLabelLines -int 2;killall Finder |
| Max Label Lines 2 | Finder | set maximum label lines to 2 | defaults write com.apple.finder MaximumLabelLines -integer 2;killall Finder |
| Max Label Lines 3 | Finder | set maximum label lines to 3 | defaults write com.apple.finder MaximumLabelLines -int 3;killall Finder |
| Max Label Lines 3 | Finder | set maximum label lines to 3 | defaults write com.apple.finder MaximumLabelLines -integer 3;killall Finder |
| Max Label Lines Default | Finder | set maximum label lines to default | defaults delete com.apple.finder MaximumLabelLines;killall Finder |
| Max Label Lines Read | Finder | read maximum label lines value | defaults read com.apple.finder MaximumLabelLines |
| Me | Address Book | show info on 'me' account | defaults read AddressBookMe |
| Mineffect Default | Dock | use default mineffect | defaults delete com.apple.dock mineffect;killall Dock |
| Mineffect Genie | Dock | use Genie mineffect | defaults write com.apple.dock mineffect -string genie;killall Dock |
| Mineffect Read | Dock | read mineffect value | defaults read com.apple.dock mineffect |
| Mineffect Scale | Dock | use Scale mineffect | defaults write com.apple.dock mineffect -string scale;killall Dock |
| Mineffect Suck | Dock | use Suck mineffect | defaults write com.apple.dock mineffect -string suck;killall Dock |
| Minimum HTML Font Size | Mail | set minimum HTML font size | defaults write com.apple.mail MinimumHTMLFontSize 14 |
| Modification Count | Dock | read dock modification count | defaults read com.apple.dock mod-count |
| Modify iTunes Link Arrows | iTunes | arrows jump to ITMS | defaults write com.apple.iTunes invertStoreLinks -boolean NO |
| Modify iTunes Link Arrows | iTunes | arrows jump to library | defaults write com.apple.iTunes invertStoreLinks -boolean YES |
| Month Names | .Global | show month names | defaults read -g NSMonthNameArray |
| N/M Favorites Imported Off | Safari | flag Netscape/Mozilla favorites not imported | defaults write com.apple.Safari NetscapeAndMozillaFavoritesWereImported -bool NO |
| N/M Favorites Imported On | Safari | flag Netscape/Mozilla favorites imported | defaults write com.apple.Safari NetscapeAndMozillaFavoritesWereImported -bool YES |
| N/M Favorites Imported Read | Safari | read Netscape/Moz favorites imported flag | defaults read com.apple.Safari NetscapeAndMozillaFavoritesWereImported |
| N/M Favorites Imported Restore | Safari | restore default Netscape/Mozilla favorites imported flag | defaults delete com.apple.Safari NetscapeAndMozillaFavoritesWereImported |
| Opaqueness Read | Terminal | read opaqueness | defaults read com.apple.Terminal TerminalOpaqueness |
| Opaqueness Restore | Terminal | restore default opaqueness | defaults delete com.apple.Terminal TerminalOpaqueness |
| Opaqueness Set Low | Terminal | set low opaqueness | defaults write com.apple.Terminal TerminalOpaqueness 0.2 |
| Opaqueness Set Medium | Terminal | set medium opaqueness | defaults write com.apple.Terminal TerminalOpaqueness 0.7 |
| Option Click Cursor Off | Terminal | disable option click cursor move | defaults delete com.apple.Terminal OptionClickToMoveCursor |
| Option Click Cursor On | Terminal | enable option click cursor move | defaults write com.apple.Terminal OptionClickToMoveCursor -bool YES |
| Option Cmd Quit | User Keys | set option-cmd-Q as quit shortcut (Safari as example) | defaults write -g NSUserKeyEquivalents '{""Quit Safari" = "~@Q";}' |
| Orientation Bottom | Dock | put Dock at bottom of desktop | defaults write com.apple.dock orientation -string bottom;killall Dock |
| Orientation Left | Dock | put Dock at left of desktop | defaults write com.apple.dock orientation -string left;killall Dock |
| Orientation Read | Dock | read orientation value | defaults read com.apple.dock orientation |
| Orientation Right | Dock | put Dock at right of desktop | defaults write com.apple.dock orientation -string right;killall Dock |
| Orientation Top | Dock | put Dock on top of desktop | defaults write com.apple.dock orientation -string top;killall Dock |
| Other Highlight Color | .Global | show other highlight colour | defaults read -g AppleOtherHighlightColor |
| Persistent Apps | Dock | read persistent Dock apps in placement order (Finder assumed) | defaults read com.apple.dock persistent-apps | grep "file-label" | sed ``/"\"file-label\" = "/s///'' | sed ``/\;/s///'' | sed ``/\"/s///'' | sed ``/\"/s///'' | sed ``/" "/s///'' |
| Persistent Apps Paths | Dock | read persistent dock apps paths in placement order (Finder assumed) | defaults read com.apple.dock persistent-apps | grep _CFURLString\" | sed s/\"\;// | sed s/" \"_CFURLString\" = \""// |
| Persistent Apps Paths Sorted | Dock | read persistent dock apps paths sorted alphabetically (Finder assumed) | defaults read com.apple.dock persistent-apps | grep _CFURLString\" | sed s/\"\;// | sed s/" \"_CFURLString\" = \""// | sort |
| Persistent Apps Sorted | Dock | read persistent Dock apps sorted alphabetically (Finder assumed) | defaults read com.apple.dock persistent-apps | grep "file-label" | sed ``/"\"file-label\" = "/s///'' | sed ``/\;/s///'' | sed ``/\"/s///'' | sed ``/\"/s///'' | sed ``/" "/s///'' | sort |
| Persistent Others | Dock | show persistent others on dock | defaults read com.apple.dock persistent-others |
| Pinning End | Dock | pin Dock at end of its side | defaults write com.apple.dock pinning -string end;killall Dock |
| Pinning Middle | Dock | pin Dock in middle of its side | defaults delete com.apple.dock pinning;killall Dock |
| Pinning Read | Dock | read pinning value | defaults read com.apple.dock pinning |
| Pinning Start | Dock | pin Dock at start of its side | defaults write com.apple.dock pinning -string start;killall Dock |
| Plugins Off | Safari | turn off plugins | defaults write com.apple.Safari WebKitPluginsEnabled -bool NO |
| Plugins On | Safari | turn on plugins | defaults write com.apple.Safari WebKitPluginsEnabled -bool YES |
| Plugins Read | Safari | read status of plugins | defaults read com.apple.Safari WebKitPluginsEnabled |
| Plugins Restore | Safari | restore default plugins status | defaults delete com.apple.Safari WebKitPluginsEnabled |
| Prefer Plain Text On | Mail | force Mail to only display plain text | defaults write com.apple.mail PreferPlainText -bool YES |
| Prefer Plain Text Read | Mail | read Prefer Plain Text setting | defaults read com.apple.mail PreferPlainText |
| Prefer Plain Text Restore | Mail | restore Prefer Plain Text default | defaults delete com.apple.mail PreferPlainText |
| Preferences Version | Menu Bar Clock | read preferences version | defaults read com.apple.MenuBarClock PreferencesVersion |
| Prohibit Burn Off | Finder | allow burning media | defaults delete com.apple.finder ProhibitBurn;killall Finder |
| Prohibit Burn On | Finder | prohibit burning media | defaults write com.apple.finder ProhibitBurn -bool YES;killall Finder |
| Prohibit Connect To Off | Finder | allow use of 'Connect To' | defaults delete com.apple.finder ProhibitConnectTo;killall Finder |
| Prohibit Connect To On | Finder | prohibit use of 'Connect To' | defaults write com.apple.finder ProhibitConnectTo -bool YES;killall Finder |
| Prohibit Eject Off | Finder | allow use of 'Eject' | defaults delete com.apple.finder ProhibitEject;killall Finder |
| Prohibit Eject On | Finder | prohibit use of 'Eject' | defaults write com.apple.finder ProhibitEject -bool YES;killall Finder |
| Prohibit Empty Trash Off | Finder | allow emptying trash | defaults delete com.apple.finder ProhibitEmptyTrash;killall Finder |
| Prohibit Empty Trash On | Finder | prohibit emptying trash | defaults write com.apple.finder ProhibitEmptyTrash -bool YES;killall Finder |
| Prohibit Goto Folder Off | Finder | allow use of 'Goto Folder' | defaults delete com.apple.finder ProhibitGoToFolder;killall Finder |
| Prohibit Goto Folder On | Finder | prohibit 'Goto Folder' | defaults write com.apple.finder ProhibitGoToFolder -bool YES;killall Finder |
| Prohibit Goto iDisk Off | Finder | allow access to iDisk | defaults delete com.apple.finder ProhibitGoToiDisk;killall Finder |
| Prohibit Goto iDisk On | Finder | prohibit access to iDisk | defaults write com.apple.finder ProhibitGoToiDisk -bool YES;killall Finder |
| Prohibit Preferences Off | Finder | allow use of preferences | defaults delete com.apple.finder ProhibitFinderPreferences;killall Finder |
| Prohibit Preferences On | Finder | prohibit use of preferences | defaults write com.apple.finder ProhibitFinderPreferences -bool YES;killall Finder |
| QuitFinder Off | Dock | don't show Quit item on Finder's Dock menu | defaults delete com.apple.dock QuitFinder;killall Dock |
| QuitFinder On | Dock | show Quit item on Finder's Dock menu | defaults write com.apple.dock QuitFinder -bool YES;killall Dock |
| QuitFinder Read | Dock | read Quit Finder flag | defaults read com.apple.dock QuitFinder |
| Recent Menu Limit 10 | Safari | limit number of recent menu items to 10 | defaults write RecentHistoryMenuItemsLimit 10 |
| Recent Menu Limit Read | Safari | limit number of recent menu items | defaults read RecentHistoryMenuItemsLimit |
| Recent Menu Limit Restore | Safari | limit number of recent menu items | defaults delete RecentHistoryMenuItemsLimit |
| Recent Searches | Safari | show recent search strings | defaults read com.apple.safari RecentSearchStrings |
| Recent Searches Clean | Safari | clean recent search strings | defaults delete com.apple.safari RecentSearchStrings |
| Recents Limit | Desktop | show recent documents limit | defaults read -g NSRecentDocumentsLimit |
| Recents Limit 0 | Desktop | set recent documents limit to 0 | defaults write -g NSRecentDocumentsLimit -int 0 |
| Recents Limit 10 | Desktop | set recent documents limit to 10 | defaults write -g NSRecentDocumentsLimit -int 10 |
| Remove Indexes | Spotlight | remove Spotlight indexes | sudo mdutil -E / |
| Remove Store | Spotlight | remove Spotlight store | sudo rm -fr /.Spotlight-V100 |
| Report Bug On | Safari | show 'Report Bug' in address bar | defaults write com.apple.Safari AddressBarIncludesReportBug -bool YES |
| Report Bug Read | Safari | read status of 'Report Bug' in address bar | defaults read com.apple.Safari AddressBarIncludesReportBug |
| Report Bug Restore | Safari | restore default status of 'Report Bug' in address bar | defaults delete com.apple.Safari AddressBarIncludesReportBug |
| Scroll Bar DoubleBoth | .Global | use scroll bar variant DoubleBoth | defaults write -g AppleScrollBarVariant -string DoubleBoth;killall Finder |
| Scroll Bar DoubleMax | .Global | use scroll bar variant DoubleMax | defaults write -g AppleScrollBarVariant -string DoubleMax;killall Finder |
| Scroll Bar DoubleMin | .Global | use scroll bar variant DoubleMin | defaults write -g AppleScrollBarVariant -string DoubleMin;killall Finder |
| Scroll Bar Read | .Global | read scroll bar variant | defaults read -g AppleScrollBarVariant |
| Scroll Bar Single | .Global | use scroll bar variant Single | defaults write -g AppleScrollBarVariant -string Single;killall Finder |
| Shadow Off | Dock | don't show shadow in Dock | defaults delete com.apple.dock showshadow;killall Dock |
| Shadow On | Dock | show shadow in Dock | defaults write com.apple.dock showshadow -bool YES;killall Dock |
| Shadow Read | Dock | read shadow flag | defaults read com.apple.dock showshadow |
| Shift Cmd Quit | User Keys | set shift-cmd-Q as quit shortcut (Safari as example) | defaults write -g NSUserKeyEquivalents '{""Quit Safari" = "@Q";}' |
| Short Date Format | .Global | show short date format | defaults read -g NSShortDateFormatString |
| Short Date Format | HI Toolbox | show system short date format | defaults read com.apple.HIToolbox AppleShortDateFormat |
| Short Date Separator | HI Toolbox | show system short date separator | defaults read com.apple.HIToolbox AppleShortDateSeparator |
| Short Month Names | .Global | show short month names | defaults read -g NSShortMonthNameArray |
| Short Weekdays | .Global | show short weekdays | defaults read -g NSShortWeekDayNameArray |
| Show All Extensions Off | .Global | turn off extensions in Finder and file dialogs | defaults delete -g AppleShowAllFiles;killall Finder |
| Show All Extensions On | .Global | turn on extensions in Finder and file dialogs | defaults write -g AppleShowAllFiles -bool YES;killall Finder |
| Show All Files Off | Dock | don't show all files in Dock | defaults delete com.apple.dock AppleShowAllFiles;killall Dock |
| Show All Files Off | Finder | don't show all files in Finder | defaults delete com.apple.finder AppleShowAllFiles;killall Finder |
| Show All Files On | Dock | show all files in Dock | defaults write com.apple.dock AppleShowAllFiles -bool YES;killall Dock |
| Show All Files On | Finder | show all files in Finder | defaults write com.apple.finder AppleShowAllFiles -bool YES;killall Finder |
| Show All Files Read | Dock | read show all files flag | defaults read com.apple.dock AppleShowAllFiles |
| Show All Files Read | Finder | read show all files flag | defaults read com.apple.finder AppleShowAllFiles |
| Show Day | Menu Bar Clock | read day display status | defaults read com.apple.MenuBarClock ShowDay |
| Show Desktop Window Off | Expos | show ordinary desktop | defaults write com.apple.dock wvous-olddesktop -bool YES; killall Dock |
| Show Desktop Window On | Expos | shows desktop in a minimised window | defaults write com.apple.dock wvous-olddesktop -bool NO;killall Dock |
| Show Hidden Off | Dock | don't show hidden files in Dock | defaults delete com.apple.dock showhidden;killall Dock |
| Show Hidden On | Dock | show hidden files in Dock | defaults write com.apple.dock showhidden -bool YES;killall Dock |
| Show Hidden Read | Dock | read hidden files flag | defaults read com.apple.dock showhidden |
| Show Quartz | Quartz | show Quartz drawing (Safari as example) | /Applications/Safari.app/Contents/MacOS/Safari -NSShowAllDrawing YES -NSShowAllViews YES -NSShowAllWindows YES & |
| Show Quartz All | Quartz | show all Quartz drawing (Mail as example) | /Applications/Mail.app/Contents/MacOS/Mail -NSDebugViewDrawing YES -NSDrawAllViews YES -NSMeasureViewDrawing YES -NSShowAllDrawing YES -NSShowAllDrawingColor YES -NSShowAllViews YES -NSShowAllWindows YES & |
| Spell Checking Off | Safari | turn off spell checking | defaults write com.apple.Safari WebContinuousSpellCheckingEnabled -bool NO |
| Spell Checking On | Safari | turn on spell checking | defaults write com.apple.Safari WebContinuousSpellCheckingEnabled -bool YES |
| Spell Checking Read | Safari | show spell checking status | defaults read com.apple.Safari WebContinuousSpellCheckingEnabled |
| Spell Checking Restore | Safari | restore default spell checking status | defaults delete com.apple.Safari WebContinuousSpellCheckingEnabled |
| Spell Server Language | .Global | show preferred spell server language | defaults read -g NSPreferredSpellServerLanguage |
| Spell Server Vendors | .Global | show preferred spell server vendors | defaults read -g NSPreferredSpellServerVendors |
| Status Bar Off | Safari | toggle status bar off | defaults write com.apple.Safari ShowStatusBar -bool NO |
| Status Bar On | Safari | toggle status bar on | defaults write com.apple.Safari ShowStatusBar -bool YES |
| Status Bar Read | Safari | read toggle of status bar | defaults read com.apple.Safari ShowStatusBar |
| Status Bar Restore | Safari | restore default toggle of status bar | defaults delete com.apple.Safari ShowStatusBar |
| System UI Server | Desktop | show UI server menulets | defaults read com.apple.systemuiserver |
| System Version Stamp Number | Login Window | show system version stamp as number | defaults read loginwindow SystemVersionStampAsNumber |
| System Version Stamp String | Login Window | show system version stamp as string | defaults read loginwindow SystemVersionStampAsString |
| Tabbed Browsing Off | Safari | turn off tabbed browsing | defaults write com.apple.Safari TabbedBrowsing -bool NO |
| Tabbed Browsing On | Safari | turn on tabbed browsing | defaults write com.apple.Safari TabbedBrowsing -bool YES |
| Tabbed Browsing Read | Safari | read tabbed browsing status | defaults read com.apple.Safari TabbedBrowsing |
| Tabbed Browsing Restore | Safari | restore tabbed browsing default | defaults delete com.apple.Safari TabbedBrowsing |
| Tile Size | Dock | show tile size | defaults read com.apple.dock tilesize |
| Time Cycle | HI Toolbox | show system time cycle | defaults read com.apple.HIToolbox AppleTimeCycle |
| Time Format | .Global | show time format | defaults read -g NSTimeFormatString |
| Trash Clean | Trash | clean ~/.Trash directory | sudo rm -fr ~/.Trash/* |
| Trash Full Off | Dock | set trash to empty | defaults write com.apple.dock trash-full -bool NO;killall Dock |
| Trash Full On | Dock | set trash to full | defaults write com.apple.dock trash-full -bool YES;killall Dock |
| Trash Full Read | Dock | show trash full status | defaults read com.apple.dock trash-full |
| Trash Purge | Trash | purge ~/.Trash directory | sudo rm -fPr ~/.Trash/* |
| Unexpected Quit Bypass | CrashReporter | bypass the Unexpected Quit dialog (show submit screen) | defaults write com.apple.CrashReporter DialogType crashreport |
| Unexpected Quit Default | CrashReporter | turn on default Unexpected Quit dialog | defaults delete com.apple.CrashReporter DialogType |
| Unexpected Quit Off | CrashReporter | turn off Unexpected Quit dialog | defaults write com.apple.CrashReporter DialogType none |
| User Idle Timeout | iChat | set user idle timeout (seconds) | defaults write com.apple.ichatagent UserIdleTimeout 600 |
| User Idle Timeout Read | iChat | show user idle timeout (seconds) | defaults read com.apple.ichatagent UserIdleTimeout |
| User Idle Timeout Restore | iChat | set default user idle timeout | defaults delete com.apple.ichatagent UserIdleTimeout |
| WebKit History Limit 25 | Safari | set history entry limit to 25 | defaults write com.apple.Safari WebKitHistoryItemLimit 25 |
| WebKit History Limit Read | Safari | read history entry limit | defaults read com.apple.Safari WebKitHistoryItemLimit |
| WebKit History Limit Restore | Safari | restore history entry limit | defaults delete com.apple.Safari WebKitHistoryItemLimit |
| WebKit Minimum Fixed Font | Safari | set fixed font minimum size | defaults write com.apple.Safari WebKitMinimumFixedFontSize 10 |
| WebKit Minimum Fixed Font Read | Safari | read fixed font minimum size | defaults read com.apple.Safari WebKitMinimumFixedFontSize |
| WebKit Minimum Fixed Font Restore | Safari | restore fixed font minimum size | defaults delete com.apple.Safari WebKitMinimumFixedFontSize |
| WebKit Minimum Font | Safari | set font minimum size | defaults write com.apple.Safari WebKitMinimumFontSize 10 |
| WebKit Minimum Font Read | Safari | read font minimum size | defaults read com.apple.Safari WebKitMinimumFontSize |
| WebKit Minimum Font Restore | Safari | restore font minimum size | defaults delete com.apple.Safari WebKitMinimumFontSize |
| Weekdays | .Global | show weekdays | defaults read -g NSWeekDayNameArray |
| Window Frame Read | Safari | read window frame | defaults read com.apple.Safari NSWindow\ Frame\ BrowserWindowFrame |
| Window Frame Restore | Safari | restore default window frame | defaults delete com.apple.Safari NSWindow\ Frame\ BrowserWindowFrame |
| Zoom Rects Off | Finder | don't use zoom rects in Finder | defaults delete com.apple.finder ZoomRects;killall Finder |
| Zoom Rects On | Finder | use zoom rects in Finder | defaults write com.apple.finder ZoomRects -bool YES;killall Finder |
| Zoom Rects Read | Finder | read zoom rects flag | defaults read com.apple.finder ZoomRects |