Terminal Hack: Transparent Apps
Posted by Gordy | Filed under Hacking OS X
If you’re like me, you like to hide your apps when you’re not using them right away. If you want to mark them as hidden, then type this code into Terminal:
defaults write com.apple.Dock showhidden -bool YES
killall Dock
To change it back, just change YES to NO and killall Dock.
Terminal Hack: Transparent Apps from GordyMac on Vimeo.
Tags: apps, gordymac, hack, os, terminal, transparent
Terminal Hack: Recent Apps Stack
Posted by Gordy | Filed under Hacking OS X
Want access to your recent applications, but don’t want to clutter your dock with stuff you don’t use a too much?
Terminal Hack: Recent Apps Stack from GordyMac on Vimeo.
Code:
defaults write com.apple.dock persistent-others -array-add ‘{ “tile-data” = { “list-type” = 1; }; “tile-type” = “recents-tile”; }’
killall Dock
Tags: terminal hack recent apps applications stack osx os dock stacks gordymac
Terminal Hack: 2-D Dock
Posted by Gordy | Filed under Geek, Hacking OS X
In Leopard, you can have a clean-looking 2-D dock similar to the ones found in Tiger, Panther, and Jaguar. I like it because it’s easier to see, and easier to look at.
Terminal Hack: 2-D Dock from GordyMac on Vimeo.
Code:
defaults write com.apple.dock no-glass -boolean YES
killall Dock
To reverse it, change “YES” to “NO”
Tags: 2-d, 2d, clean, dock, hack, hacking, how-to, leopard, mac, osx, terminal
Terminal Hack: Mouse-over Gradient in Leopard’s Stacks
Posted by Gordy | Filed under Geek, Hacking OS X
Want extra eye-candy? Use this simple hack to have a cool mouse-over gradient in the Stacks’ “grid view.”
Terminal Hack: Mouse-over Gradient in Stacks from GordyMac on Vimeo.
Terminal code:
defaults write com.apple.dock mouse-over-hilte-stack -boolean YES
killall Dock
Tags: gradient, grid, hack, mac, mouse, osx, over, stacks, terminal, view