Terminal – The Graphic Mac http://www.thegraphicmac.com Mon, 25 Jul 2016 15:45:56 +0000 en-US hourly 1 https://wordpress.org/?v=4.5.3 How to show a list of all the files you’ve ever downloaded on your Mac http://www.thegraphicmac.com/how-to-show-a-list-of-all-the-files-youve-ever-downloaded-on-your-mac Tue, 18 Mar 2014 14:00:43 +0000 http://www.thegraphicmac.com/?p=9523 Related posts:
  1. 10 Defaults Write commands for customizing Mac OS X
  2. Free PSD files for download
  3. Troubleshooting: List installed 3rd-party kernel extensions
]]>
TerminalHave you ever wanted to show a list of the entire download history of your Mac?

Whether it’s for troubleshooting, personal interest, or forensics, MacOSXDaily has a nifty Terminal tip that will show you a list of all the files you’ve downloaded.

It’s an old tip, dating back to 2012, but it still works perfectly.

]]>
10 Defaults Write commands for customizing Mac OS X http://www.thegraphicmac.com/10-defaults-write-commands-for-customizing-mac-os-x Mon, 05 Nov 2012 16:00:41 +0000 http://www.thegraphicmac.com/?p=8197 Related posts:
  1. Hide files and folders in the Mac OS X Finder
  2. Remove Lion’s Mission Control animation
  3. Customize your OS X Lion installation with these Terminal hacks
]]>
OSXDaily has put together 10 commands you can use in the Terminal app to customize how Mac OS X looks and works. These commands are called Defaults Write commands because they alter the default settings of OS X. They are of course reversible, and the list shows the commands you need to type in the Terminal, as well as how to return it to Apple’s default settings.

Some of the commands include: Always Show Hidden Files in the Finder, Speed Up Mission Control Animations, Change Where Screen Shots Are Saved To, and Show System Info at the Login Screen.

You can see all ten commands here.

]]>
Remove Lion’s Mission Control animation http://www.thegraphicmac.com/remove-lions-mission-control-animation Wed, 14 Mar 2012 15:00:38 +0000 http://www.thegraphicmac.com/?p=7296 For users with the latest & greatest Macs, the animations Lion added are probably barely noticeable. But for those of us running it on older Macs, it's painfully slow and quite annoying. Thankfully, much like removing the new Mail animation I wrote about last week, you can remove the animation completely. ]]> OS X LionFor users with the latest & greatest Macs, the animations Lion added are probably barely noticeable. But for those of us running it on older Macs, it’s painfully slow and quite annoying. Thankfully, much like removing the new Mail animation I wrote about last week, you can remove the animation completely.

Launch the Terminal app and type the following and hit Return after:
defaults write com.apple.dock expose-animation-duration -float 0

Before the change takes affect, you need to restart OS X’s Dock, which you do by typing the following in the Terminal and hitting Return:
killall Dock

Thanks to OSXDaily for the tip, and a few more adjustments you can make to Mission Control’s animation, including restoring it to its original state.

]]>
Customize your OS X Lion installation with these Terminal hacks http://www.thegraphicmac.com/customize-your-os-x-lion-installation-with-these-terminal-hacks http://www.thegraphicmac.com/customize-your-os-x-lion-installation-with-these-terminal-hacks#comments Wed, 03 Aug 2011 13:00:24 +0000 http://www.thegraphicmac.com/?p=5813 Related posts:
  1. Is your favorite app compatible with Mac OS X (10.7) Lion?
  2. Changing OS X Lion’s Mission Control and Dashboard image backgrounds
  3. Eliminate shadows in Leopard screenshots
]]>
Lion Terminal hacksLion has brought lots of small tweaks and changes to the Mac OS, and some people don’t like those changes. Here are a few ways you can change things using the Terminal in Mac OSX Lion to customize the OS to your liking.

Key Repeat
When holding a key down on your keyboard, Lion now offers a pop-up displaying the accent characters available by default, instead of simply repeating the character.

  • Turn on key-repeat (turning off the accent character pop-up):
  • cdefaults write -g ApplePressAndHoldEnabled -bool false


Window Animations
Lion opens windows and dialog boxes with a new animation. On modern machines with plenty of RAM they’re pretty cool. But if you have an older machine or they simply annoy you, get rid of them easily.

  • Turn off window animations globally:
  • defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO

Don’t Save
I was unaware that previous OS versions had a keyboard shortcut for “Don’t Save,” and Lion changed it. You can restore ⌘D to activate the Don’t Save button.

  • Restore ⌘D – Don’t Save:
  • defaults write NSGlobalDomain NSSavePanelStandardDesktopShortcutOnly -bool YES

Safari Reading List
Lion adds a permanent Reading List icon to Safari’s Bookmarks bar. While it’s handy for most folks, many people prefer a service like ReadItLater.

  • Hide the Reading List icon with this Terminal command:
  • defaults write com.apple.Safari ProxiesInBookmarksBar '("Top Sites")'
  • Once it’s removed from the Bookmarks bar, you can add it to the main Toolbar simply by going to View>Customize Toolbar and drag the icon into the main Toolbar.

Library Folder
By default, Lion hides your Users/Library folder. While it’s easy to access it by holding the Option key down in the Finder while in the Go menu (it will appear in the list), there’s an easy way to make it permanently visible.

  • Make the Library folder visible permanently:
  • chflags nohidden ~/Library

Most of these hacks are easily reversible simply by switching NO for YES in the command. If you’re unsure, many of these Terminal commands are also available in apps like Onyx.

]]>
http://www.thegraphicmac.com/customize-your-os-x-lion-installation-with-these-terminal-hacks/feed 5
Troubleshooting: List installed 3rd-party kernel extensions http://www.thegraphicmac.com/troubleshooting-list-installed-3rd-party-kernel-extensions http://www.thegraphicmac.com/troubleshooting-list-installed-3rd-party-kernel-extensions#comments Mon, 16 Aug 2010 13:00:21 +0000 http://www.thegraphicmac.com/?p=3553 Back in the days prior to OS X, it was easy to find 3rd party (and Apple) system extensions on your Mac. They were all located in the System>Extensions folder. With OS X though, the task of even knowing which kernel extensions are installed isn't quite as easy, which can be particularly frustrating when you're troubleshooting an issue on your Mac. Thankfully, this tip gives you an easy way to see what you're dealing with. ]]> TerminalBack in the days prior to OS X, it was easy to find 3rd party (and Apple) system extensions on your Mac. They were all located in the System>Extensions folder. With OS X though, the task of even knowing which kernel extensions are installed isn’t quite as easy, which can be particularly frustrating when you’re troubleshooting an issue on your Mac.

For the geeks among you, it’s quite easy though. To list all 3rd party extensions, simply launch the Terminal app located in your Utilities folder and type the following:
kextstat | grep -v com.apple

You can also list all the Apple-installed kernel extensions by typing:
kextstat

I came across this little hint over at OSXDaily, a site I visit quite often because of the variety of topics covered.

]]>
http://www.thegraphicmac.com/troubleshooting-list-installed-3rd-party-kernel-extensions/feed 1
13 cool OSX Leopard tweeks via Terminal http://www.thegraphicmac.com/13-cool-osx-leopard-tweeks-terminal Fri, 30 Nov 2007 13:51:39 +0000 http://www.thegraphicmac.com/wordpress/?p=2020 There are already many applications available which allow you to tweek the settings in OSX Leopard to adjust the dock, the menu bar, and other areas you wish to alter. But one thing that bothers me is having all those little apps hanging around my hard drive, or worse yet, running at all times. UsingMac has listed 13 very handy Terminal commands that do the same thing as many of these apps, without the space and memory overhead.… Read the rest

]]>
There are already many applications available which allow you to tweek the settings in OSX Leopard to adjust the dock, the menu bar, and other areas you wish to alter. But one thing that bothers me is having all those little apps hanging around my hard drive, or worse yet, running at all times. UsingMac has listed 13 very handy Terminal commands that do the same thing as many of these apps, without the space and memory overhead. It’s as simple as copy & paste. Check them out.

]]>