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
# Enable colored output for ls | |
export CLICOLOR=true | |
# First a basic colored prompt | |
export PS1='\[\033[0;32m\]\u@\h\[\033[0;36m\] \w\[\033[00m\]: ' | |
# Then fancy colored prompts | |
function EXT_COLOR () { echo -ne "\[\033[38;5;$1m\]"; } | |
if [ "$TERM" = "xterm-256color" ]; then | |
# Normal windows get a green-yellow fade prompt | |
colors="`EXT_COLOR 118`ro" |
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
altscreen on | |
hardstatus on | |
hardstatus alwayslastline | |
startup_message off | |
termcapinfo xterm ti@:te@ | |
hardstatus string " %{= kC}%-w%{.rW}%n %t%{-}%+w %=%{..C} %H %{..C} %m/%d " | |
defscrollback 1000 | |
# Bind C-a v to copy buffer to Mac OS X clipboard. | |
bind v eval "writebuf" "exec sh -c 'pbcopy < /tmp/screen-exchange'" |
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/bash | |
# This script runs as root on the server | |
chef_binary=/usr/local/bin/chef-solo | |
# Are we on a vanilla system? If so, install Ruby and the chef gem | |
if ! test -f "$chef_binary"; then | |
export DEBIAN_FRONTEND=noninteractive | |
# Upgrade headlessly (this is only safe-ish on vanilla systems) |