Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #310 from caarlos0/newfont
Browse files Browse the repository at this point in the history
anonymous pro font
  • Loading branch information
caarlos0 authored Mar 17, 2017
2 parents b21acd7 + 863e853 commit 549a57c
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion atom.symlink/config.cson
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"one-dark-syntax"
]
editor:
fontFamily: "Hack"
fontFamily: "Anonymous Pro"
fontSize: 15
invisibles: {}
scrollPastEnd: true
Expand Down
13 changes: 7 additions & 6 deletions fonts/install.sh
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
#!/bin/sh
URL="https://github.com/chrissimpkins/Hack/releases/download/"
URL="http://www.marksimonson.com/assets/content/fonts/AnonymousPro-1.002.zip"

install() {
curl -L -s -o /tmp/hack.tgz "$URL/v2.020/Hack-v2_020-${1}.tar.gz"
tar xzvf /tmp/hack.tgz -C "$2"
curl -L -s -o /tmp/anon.tgz "$URL"
tar xzvf /tmp/anon.tgz -C /tmp
cp /tmp/AnonymousPro-1.002.001/*.ttf "$2"
}

if [ "$(uname -s)" = "Darwin" ]; then
if which brew >/dev/null 2>&1; then
brew cask install font-hack
brew cask install font-anonymous-pro
else
install "otf" ~/Library/Fonts
install ~/Library/Fonts
fi
else
mkdir -p ~/.fonts
install "ttf" ~/.fonts
install ~/.fonts
fi
2 changes: 1 addition & 1 deletion iterm/com.googlecode.iterm2.plist.example
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@
<key>Non-ASCII Anti Aliased</key>
<true/>
<key>Normal Font</key>
<string>Hack 14</string>
<string>AnonymousPro 14</string>
<key>Option Key Sends</key>
<integer>0</integer>
<key>Prompt Before Closing 2</key>
Expand Down
2 changes: 1 addition & 1 deletion sublime-text-3/Preferences.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
".settings",
".idea"
],
"font_face": "Hack",
"font_face": "Anonymous Pro",
"font_size": 15,
"highlight_line": true,
"highlight_modified_tabs": true,
Expand Down
2 changes: 1 addition & 1 deletion terminator/config
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[profiles]
[[default]]
palette = "#2b303b:#bf616a:#a3be8c:#ebcb8b:#8fa1b3:#b48ead:#96b5b4:#c0c5ce:#65737e:#bf616a:#a3be8c:#ebcb8b:#8fa1b3:#b48ead:#96b5b4:#eff1f5"
font = Hack 13
font = AnonymousPro 14
background_image = None
use_system_font = False
cursor_color = "#c0c5ce"
Expand Down
2 changes: 1 addition & 1 deletion vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"editor.fontFamily": "Hack",
"editor.fontFamily": "Anonymous Pro",
"editor.fontSize": 15,
"editor.rulers": [
80,
Expand Down

0 comments on commit 549a57c

Please sign in to comment.