Notice»

Recent Post»

Recent Comment»

Recent Trackback»

Archive»

« 2024/4 »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30

 

'dock'에 해당되는 글 2

  1. 2011.04.29 How to show currently active apps in Mac OS X Dock
  2. 2011.04.16 Add a Recent Items Menu to the Dock
 

How to show currently active apps in Mac OS X Dock

Creativity | 2011. 4. 29. 00:11 | Posted by 스마트 안전보건

Here’s a great trick if you prefer a minimalist Mac OS X desktop and Dock: set the Dock to only display currently active apps. Launch the Terminal and enter the following command:

스크린샷_2011-04-28_at_오전_9.06.39.png

defaults write com.apple.dock static-only -bool TRUE

Now you have to kill the Dock for changes to take effect:

killall Dock

If you use the Dock as an app launcher, this probably won’t be that useful for you. I almost always use Spotlight to launch apps and have my Dock automatically hide, so I’m going to try this out for a while and see how well it works in my day to day workflow.

If you want to revert back to the default Dock behavior, use this command:

defaults write com.apple.dock static-only -bool FALSE

Don’t forget to kill the Dock again for the changes to take effect.

killall Dock

Note: if you try out this tip and don’t like it, you won’t lose your previous Dock icons or arrangement, just use the FALSE command and everything will be back to normal.

이 글은 스프링노트에서 작성되었습니다.

:

Add a Recent Items Menu to the Dock

Creativity | 2011. 4. 16. 02:18 | Posted by 스마트 안전보건

You can add a Recent Items menu to the Mac OS X Dock by using a defaults write command. The default is set to “Recent Applications” but once the Dock item exists you can adjust it to feature other recent items too.

스크린샷_2011-04-15_오전_11.13.47.png

Launch the terminal and enter the following:

defaults write com.apple.dock persistent-others -array-add '{ "tile-data" = { "list-type" = 1; }; "tile-type" = "recents-tile"; }'

That needs to all be on a single line, so if you copy and paste it make sure the command is one string.

You will then need to kill the Dock.

killall Dock

스크린샷_2011-04-15_오전_11.13.33.png

Now right-click on the newly appeared Recent Applications Dock item and you can change it to be Recent Applications, Recent Documents, Recent Servers, Favorite Volumes, or Favorite Items.

Source: osxdaily.com

이 글은 스프링노트에서 작성되었습니다.

: