Customize the Dock: Add a Recent Applications Stack to the Dock

Posted:
in macOS edited January 2014

Comments

  • Reply 1 of 2
    WoW Thx
  • Reply 2 of 2
    outsideroutsider Posts: 6,008member
    Here are some more:



    Enable x-Ray folders in Quicklook (Quicklook a folder and you see it's contents)

    Change the 1 to a 0 to undo.
    Code:


    defaults write com.apple.Finder QLEnableXRayFolders 1







    Highlight mouse-overs in Stacks:

    Change yes to no to undo.
    Code:


    defaults write com.apple.dock mouse-over-hilite-stack -boolean yes







    Dim hidden apps in dock:

    Change yes to no to undo.
    Code:


    defaults write com.apple.Dock showhidden -bool YES







    Change the way list stacks look:

    Change yes to no to undo.
    Code:


    defaults write com.apple.dock use-new-list-stack -bool YES







    Always expand the print dialog box:

    Change TRUE to FALSE to undo.
    Code:


    defaults write -g PMPrintingExpandedStateForPrint -bool TRUE







    Skip crash reporter:

    Code:


    defaults write com.apple.CrashReporter DialogType none







    Skip disk image verify when opening dmgs:

    Code:


    defaults write com.apple.frameworks.diskimages skip-verify TRUE







    Safari: Open clicked links in tabs instead of new windows:

    Code:


    defaults write com.apple.Safari TargetedClicksCreateTabs -bool true







    Skip unsubmitted form text warning in Safari:

    Code:


    defaults write com.apple.Safari DebugConfirmTossingUnsubmittedFormText NO







    Change TimeMachine interval:

    where 7200 is seconds (2 hours). 10800 = 3 hours, 14400 = 4 hours, etc.
    Code:


    sudo defaults write /System/Library/LaunchDaemons/com.apple.backupd-auto StartInterval -int 7200



Sign In or Register to comment.