-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
44 lines (34 loc) · 999 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This is a config file for speedreader
# These are all avaliable colors (ASCII color sequences)
black = 30
red = 31
green = 32
brown = 33
blue = 34
purple = 35
cyan = 36
light_gray = 37
# /-----------------------\
# |CONFIG FILE STARTS HERE|
# \-----------------------/
# WPM - words per minute
# This will be default WPM if no arguments were passed
WPM = 800
# Avaliable colors are: black, red, greeen, brown, blue, purple, cyan, light_gray
# The color that highlights the middle letter
MIDDLE_LETTER = red
# The color that higlights the dot "."
DOT = red
# The color that higlights the apostrophe "'"
APOSTROPHE = red
# The color that higlights the comma ","
COMMA = red
# Pipe is the character that is below and above the world
# The color that higlights the pipe "|"
PIPE = red
# The pipe placement "|" above and below the word
# The higher the number is the pipe is more to the right
PIPE_CALIBRATION = 1
# /-------------------- \
# |CONFIG FILE ENDS HERE|
# \---------------------/