From 8460c1a61909427c955c9f351ae878c7e301235a Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Fri, 10 Jan 2014 20:11:59 +0100 Subject: [PATCH] Change URLs into my own URLs. Signed-off-by: Jacob Kiers --- Readme.md | 12 ++++++------ color/Readme.md | 2 +- dropzone/Kindle.dropzone | 4 ++-- install/Readme.md | 8 ++++---- install/install.sh | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Readme.md b/Readme.md index 83ccbf4..0d13f88 100644 --- a/Readme.md +++ b/Readme.md @@ -1,14 +1,14 @@ -# Artem Sapegin’s dotfiles +# Jacob Kiers’ dotfiles ## Installation ```bash -curl dot.sapegin.me | bash +curl dot.jacobkiers.net | bash ``` or ```bash -curl https://raw.github.com/sapegin/dotfiles/master/install/install.sh | bash +curl https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh | bash ``` It’ll installs Git (on OS X only), clones latest version of dotfiles to `~/dotfiles` and makes symlinks in your home directory. @@ -21,7 +21,7 @@ dotfiles ## Screenshot -![Terminal.app](https://raw.github.com/sapegin/dotfiles/master/color/squirrelsong_terminal.png) +![Terminal.app](https://bitbucket.org/jacobkiers/dotfiles/raw/master/color/squirrelsong_terminal.png) ## Features @@ -35,7 +35,7 @@ dotfiles * OS X, Homebrew, NPM, etc. update script (`setup/update.sh`) * Color conversion script: convert #HEX to RGB/RGBA and HSL/HSLA * My magic project opener (`bin/opener.py`) -* [Bash](https://github.com/sapegin/dotfiles/blob/master/docs/Bash.md) & [Git](https://github.com/sapegin/dotfiles/blob/master/docs/Git.md) aliases and scripts +* [Bash](https://bitbucket.org/jacobkiers/dotfiles/src/master/docs/Bash.md) & [Git](https://bitbucket.org/jacobkiers/dotfiles/src/master/docs/Git.md) aliases and scripts * [Mac OS X apps I use](https://github.com/sapegin/dotfiles/wiki/OS-X-Apps) ## Notes @@ -62,4 +62,4 @@ You can use any file extensions in `tilde/` to invoke proper syntax highlighting --- -:shipit: \ No newline at end of file +:shipit: diff --git a/color/Readme.md b/color/Readme.md index 0848ee1..059dd49 100644 --- a/color/Readme.md +++ b/color/Readme.md @@ -1,6 +1,6 @@ # Squirrelsong Color Scheme for Terminal.app -![Terminal.app](https://raw.github.com/sapegin/dotfiles/master/color/squirrelsong_terminal.png) +![Terminal.app](https://bitbucket.org/jacobkiers/dotfiles/raw/master/color/squirrelsong_terminal.png) Inspired by [Earthsong](https://github.com/daylerees/colour-schemes/blob/master/README.md#earthsong) Sublime Text scheme by [Dayle Rees](https://github.com/daylerees). diff --git a/dropzone/Kindle.dropzone b/dropzone/Kindle.dropzone index d27f87a..1fe0537 100755 --- a/dropzone/Kindle.dropzone +++ b/dropzone/Kindle.dropzone @@ -8,13 +8,13 @@ # Creator: Artem Sapegin # URL: http://sapegin.me # OptionsNIB: Login -# IconURL: https://raw.github.com/sapegin/dotfiles/master/dropzone/icons/kindle.png +# IconURL: https://bitbucket.org/jacobkiers/dotfiles/raw/master/dropzone/icons/kindle.png # # Require: # - Calibre - http://calibre-ebook.com/download (install command line tools from Calibre’s settings) # - mutt - brew install mutt --sidebar-patch # - msmtp - https://gist.github.com/nerab/1410840 - http://www.tuaw.com/2010/05/04/msmtp-a-free-tool-to-send-email-from-terminal/ -# - anytomobi - https://github.com/sapegin/dotfiles/blob/master/bin/anytomobi +# - anytomobi - https://bitbucket.org/jacobkiers/dotfiles/src/master/bin/anytomobi # # Setup: # - Open Dropzone Kindle destination settings and type your Kindle email in Username field and any string to assword field. diff --git a/install/Readme.md b/install/Readme.md index c00f221..9893ba0 100644 --- a/install/Readme.md +++ b/install/Readme.md @@ -3,7 +3,7 @@ Installs git, clones repository and symlinks dotfiles to your home directory ```bash -curl https://raw.github.com/sapegin/dotfiles/master/install/install.sh | bash +curl https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh | bash ``` @@ -12,13 +12,13 @@ curl https://raw.github.com/sapegin/dotfiles/master/install/install.sh | bash You can put it to subdomain on you hosting and use short path. For example: ```bash -curl dot.sapegin.me | bash +curl dot.jacobkiers.net | bash ``` Copy install script to your public directory: ```bash -curl -O https://raw.github.com/sapegin/dotfiles/master/install/install.sh +curl -O https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh ``` And add to your `.htacess`: @@ -26,4 +26,4 @@ And add to your `.htacess`: ``` RewriteEngine on RewriteRule (.*) /install.sh [L] -``` \ No newline at end of file +``` diff --git a/install/install.sh b/install/install.sh index 578d78f..6addf21 100755 --- a/install/install.sh +++ b/install/install.sh @@ -17,7 +17,7 @@ fi # Clone dotfiles and make symlinks echo "Installing dotfiles..." -cd ~ && git clone git@github.com:sapegin/dotfiles.git && cd dotfiles && ./sync.py +cd ~ && git clone git@bitbucket.org:jacobkiers/dotfiles.git && cd dotfiles && ./sync.py source ~/.bashrc echo "Dotfiles installed successfully."