fix previous commit

This commit is contained in:
Mika Suomalainen 2012-12-24 19:02:43 +02:00
parent 2479d7971a
commit e35ad04f01
1 changed files with 9 additions and 0 deletions

View File

@ -1,5 +1,14 @@
PATH=$HOME/.local/bin/:$HOME/.local/sbin/:$HOME/.local/games/:/opt/local/bin/:/opt/local/sbin:/opt/local/games/:$PATH
# Sets environment variable CPUARCH to output of "uname -p" & UNAME to "uname"
UNAME=`uname`
CPUARCH=`uname -p`
# If we are on Mac, show hidden files in Finder and enable AirDrop over Ethernet and on unsupported (by Apple) Macs
if [ $UNAME = "Darwin" ]; then
defaults write com.apple.finder AppleShowAllFiles TRUE && defaults write com.apple.NetworkBrowser BrowseAllInterfaces 1
fi
# Use gpg-agent
eval $(gpg-agent --daemon)