-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refining README and adding better error messages
- Loading branch information
1 parent
62965b4
commit 7813d1f
Showing
2 changed files
with
53 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,45 @@ | ||
# font-manager | ||
|
||
A font installing utility for Linux and Mac. | ||
A command-line utility for managing fonts on Linux and macOS. Designed for both manual and automated workflows. | ||
|
||
## Quick Install | ||
## Font sources | ||
- Nerd fonts | ||
- fontsource (includes google fonts) | ||
|
||
## Installation | ||
|
||
### Quick Install (Recommended) | ||
|
||
Install with the installation script: | ||
```bash | ||
curl -sSL https://raw.githubusercontent.com/logandonley/font-manager/main/install.sh | bash | ||
``` | ||
|
||
Alternatively, download the relevant binary from the releases tab. | ||
### Manual Installation | ||
|
||
1. Download the latest binary for your system from the releases page | ||
2. (Optional, but recommended): Rename the file to fm: `mv <Downloaded file> fm` | ||
3. Make the binary executable: `chmod +x ./fm` | ||
4. Move it to your PATH: `sudo mv ./fm /usr/local/bin/` | ||
|
||
## Usage | ||
|
||
Basic command structure: | ||
|
||
```shell | ||
fm [command] [options] | ||
``` | ||
|
||
### Common use cases | ||
|
||
Download a single font | ||
|
||
```shell | ||
fm install ComicShannsMono | ||
``` | ||
|
||
Install multiple fonts | ||
|
||
```shell | ||
fm install ComicShannsMono Inter Rubik | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters