[futurebasic] Setting User Library Folder Visibility in Lion

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : June 2012 : Group Archive : Group : All Groups

From: Ken Shmidheiser <kshmidheiser@...>
Date: Wed, 13 Jun 2012 00:05:10 -0400
In OSX 10.7.x, user libraries (~/Library) are hidden which can be a pain for developers.

To make your account's Library folder visible in Lion, use this command in the Terminal
(will need to enter your password):

sudo chflags nohidden ~/Library

You can rehide it with:

sudo chflags hidden ~/Library

Ken