Skip to content

Commit

Permalink
Add Gentoo configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
FauveNoir committed Jan 5, 2015
1 parent c2a14cf commit 062f7df
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Expand Up @@ -19,8 +19,14 @@ curl -kL https://raw.github.com/cstrap/monaco-font/master/install-font-ubuntu.sh
curl -kL https://raw.github.com/cstrap/monaco-font/master/install-font-centos.sh | bash
```

#### Install Monaco Font on Gentoo

```bash
curl -kL https://raw.github.com/cstrap/monaco-font/master/install-font-gentoo.sh | bash
```

***

If you want to add other Linux distro or make some enhancements, you're welcome!

Thanks!
Thanks!
16 changes: 16 additions & 0 deletions install-font-gentoo.sh
@@ -0,0 +1,16 @@
#!/bin/bash

FONTDIR=/usr/share/fonts/Monaco-linux
echo "Start install"
sudo mkdir -p $FONTDIR

echo "Downloading font"
wget -c https://github.com/cstrap/monaco-font/raw/master/Monaco_Linux.ttf

echo "Installing font"
sudo mv Monaco_Linux.ttf $FONTDIR

echo "Updating font cache"
sudo fc-cache -f -v

echo "Enjoy"

0 comments on commit 062f7df

Please sign in to comment.