Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
| #!/bin/bash | |
| # Use the built-in ipp2ppd tool to create a PPD file for AirPrint | |
| # Add icon to PPD (if we can get one) and install the printer | |
| # Required printer info | |
| readonly PRINTER_IP='XXX.XXX.XXX.XXX' | |
| readonly PRINTER_NAME='PRINTER_NAME' | |
| readonly PRINTER_DISPLAY_NAME='PRINTER NAME' | |
| readonly PRINTER_LOCATION='PRINTER LOCATION' |
Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
| #!/usr/bin/env python | |
| import plistlib | |
| from shutil import copy | |
| import subprocess | |
| import os | |
| from tempfile import gettempdir | |
| import sys | |
| import atexit | |
| BOOKMARKS_PLIST = '~/Library/Safari/Bookmarks.plist' |