#Disable window animations
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
#Enable repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Alot of these configs have been taken from the various places | |
# on the web, most from here | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# Set the colours you can use | |
black='\033[0;30m' | |
white='\033[0;37m' | |
red='\033[0;31m' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew install tomcat-native | |
==> Downloading http://www.apache.org/dyn/closer.cgi?path=tomcat/tomcat-connectors/native/1.1.30/source/tomcat-native-1.1.30-src.tar.gz | |
Already downloaded: /Library/Caches/Homebrew/tomcat-native-1.1.30.tar.gz | |
==> ./configure --prefix=/usr/local/Cellar/tomcat-native/1.1.30 --with-apr=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platfor | |
==> make LIBTOOL=glibtool --tag=CC CC=clang | |
==> make install | |
==> Caveats | |
In order for tomcat's APR lifecycle listener to find this library, you'll | |
need to add it to java.library.path. This can be done by adding this line | |
to $CATALINA_HOME/bin/setenv.sh |