This file contains hidden or 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
| require 'formula' | |
| class Awesome < Formula | |
| url 'http://awesome.naquadah.org/download/awesome-3.5.2.tar.bz2' | |
| homepage 'http://awesome.naquadah.org/' | |
| md5 '575b2c2a6d38510c6d059dca09bc269f' | |
| depends_on 'cmake' | |
| depends_on 'lua' | |
| depends_on 'imlib2' |
This file contains hidden or 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
| backend default { | |
| .host = "127.0.0.1"; | |
| .port = "8080"; | |
| .connect_timeout = 600s; | |
| .first_byte_timeout = 600s; | |
| .between_bytes_timeout = 600s; | |
| } | |
| acl purge { | |
| "localhost"; |
This file contains hidden or 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
| PATH="/usr/local/Cellar/php54/5.4.5/bin:/usr/local/bin:$PATH" | |
| PATH="$(brew --prefix coreutils)/libexec/gnubin:$PATH" | |
| if [ -f `brew --prefix`/etc/bash_completion ]; then | |
| . `brew --prefix`/etc/bash_completion | |
| fi | |
| PS1='\[\033[01;34m\]\w\[\033[01;31m\]$(__git_ps1 "(%s)")\[\033[0m\]\[\033[01;34m\]$\[\033[00m\] ' | |
| shopt -s histappend |
This file contains hidden or 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
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
| # |