Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the install script for Arch Linux and the README.md file #21

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
dcfb31d
Font Monaco added
Jul 16, 2012
d66dc63
Auto bash scritp :)
Jul 16, 2012
f88505d
Right raw download
Jul 16, 2012
4d7a72d
curl automation
Jul 16, 2012
f40ca5d
mkdir gracefully
ryancheung Apr 16, 2013
cf515ba
Merge pull request #1 from ryancheung/master
cstrap Apr 24, 2013
513742e
Update README.md
Sep 10, 2013
05804bf
Rename install-font.sh to install-font-ubuntu.sh
Sep 10, 2013
cb435d9
Create install-font-centos.sh
Sep 10, 2013
1f9d057
Update install-font-centos.sh
Sep 14, 2013
9f6141c
Update install-font-ubuntu.sh
Sep 14, 2013
3aa835c
Update README.md
Sep 14, 2013
3dbaf71
Update README.md
Sep 14, 2013
b2f759a
Update install-font-centos.sh
Sep 14, 2013
ff38b4c
Update install-font-ubuntu.sh
Sep 14, 2013
7d69c36
Merge pull request #3 from pengjingwen1994/master
cstrap Jan 3, 2014
da0ceed
Better README.md
cstrap Jan 3, 2014
212bef7
Replace originary inspired link
cstrap Jan 3, 2014
e31f7a8
Better readme
cstrap Jan 3, 2014
3c75d40
Well, much better than better? :D
cstrap Jan 3, 2014
88501cd
Added some text
cstrap Jan 3, 2014
141f64f
Added new font pulled by @jiyinyiyong fork
cstrap Jan 3, 2014
c591a40
Fix Typo
Jan 12, 2014
7d89f1d
Replace a font file so that we can set Monaco in Gnome Terminal
zhiyuanshi Aug 17, 2014
c2a14cf
Merge pull request #5 from zhiyuanshi/master
cstrap Oct 9, 2014
062f7df
Add Gentoo configuration
FauveNoir Jan 5, 2015
a281880
Merge pull request #8 from FauveNoir/gentooSupport
cstrap Feb 11, 2015
4dd16cd
Update README
Apr 3, 2015
9c17e9c
Create install-font-archlinux.sh
Pazitos10 Jan 18, 2016
e1c4241
synced fork with original repo
Pazitos10 Nov 19, 2023
66d6842
updated install script for arch linux. Running without 'sudo'
Pazitos10 Nov 19, 2023
d415bbf
solved missing merge conflict
Pazitos10 Nov 19, 2023
a57910c
updated README.md
Pazitos10 Nov 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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"