font-linux

This commit is contained in:
lechwolowski 2020-04-05 12:03:55 +02:00
parent ab2b0274a8
commit cc179e11d8
2 changed files with 10 additions and 1 deletions

View File

@ -10,6 +10,13 @@ Python: 3.7.7
macOS / Linux
```
make install
make start
```
or manually:
```
python -m venv env
source env/bin/activate
@ -24,4 +31,4 @@ python -m venv env
env\scripts\activate.bat
pip install -r requirements.txt
python main.py
```
```

View File

@ -8,6 +8,8 @@ if system() == "Windows":
FONT = "arial.ttf"
elif system() == "Darwin":
FONT = "FiraCode-Bold.otf"
else:
FONT = "Arial.ttf"
BLACK = (0, 0, 0)
BLUE = (0, 77, 147)