Skip to content

Commit

Permalink
Remove deploy/terminal
Browse files Browse the repository at this point in the history
and add links to repos of colors and fonts to README.
  • Loading branch information
benohara committed Aug 3, 2012
1 parent 3a0062e commit 50d82d7
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 4 deletions.
26 changes: 26 additions & 0 deletions deploy/linux
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#!/bin/bash
##
# dotphiles : https://github.com/dotphiles/dotphiles
#
# Script to bootstrap a linux box
#
# Authors:
# Ben O'Hara <[email protected]>
#

###############################################################################
# apt-get
###############################################################################

if [[ -f packages/apt ]]; then
exec<packages/apt
while read line
do
if [[ ! "$line" =~ (^#|^$) ]]; then
echo $line
#sudo apt-get install $line
fi
done
fi


8 changes: 4 additions & 4 deletions deploy/osx
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ defaults write com.twitter.twitter-mac HideInBackground -bool true
# Macports #
###############################################################################

if [[ -f macports ]]; then
exec<macports
if [[ -f packages/macports ]]; then
exec<packages/macports
while read line
do
if [[ ! "$line" =~ (^#|^$) ]]; then
Expand All @@ -408,8 +408,8 @@ fi
# Homebrew
###############################################################################

if [[ -f homebrew ]]; then
exec<homebrew
if [[ -f packages/homebrew ]]; then
exec<packages/homebrew
while read line
do
if [[ ! "$line" =~ (^#|^$) ]]; then
Expand Down
13 changes: 13 additions & 0 deletions deploy/packages/apt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#
# dotphiles : https://github.com/dotphiles/dotphiles
#
# packages to be install with apt-get
#
# Authors:
# Ben O'Hara <[email protected]>
#

zsh
git
vim

File renamed without changes.
File renamed without changes.

0 comments on commit 50d82d7

Please sign in to comment.