Makes little scrolly text jiffs in Flywheel colors.
- imagemagick
brew install imagemagick
- gifsicle
brew install gifsicle
- u r on a mac
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Colors</key> | |
<dict> | |
<key>Background</key> | |
<string>0.082 0.087 0.109</string> | |
<key>InsertionPoint</key> | |
<string>1.000 1.000 1.000</string> |
#!/bin/sh | |
echo "Copying opscode.list to /etc/apt/sources.list.d" | |
sudo cp install/opscode.list /etc/apt/sources.list.d/opscode.list | |
echo "Adding opscode GPG key" | |
curl http://apt.opscode.com/[email protected] | sudo apt-key add - | |
echo "Installing chef client" | |
sudo apt-get update |