-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.py
41 lines (31 loc) · 1.3 KB
/
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
from pathlib import Path
import utils
# Load the data from the config file
data = utils.load_data("~/.config/lesson-manager/config.yaml", "yaml")
# Assign the data to the variables
home = Path(data["home"]).expanduser()
user = data["user"]
create_readme_file = data["create_readme_file"]
highlight_current_course = data["highlight_current_course"]
calendar_id = data["calendar_id"]
drive_folder_id = data["drive_folder_id"]
editor = data["editor"]
terminal = data["terminal"]
pdf_viewer = data["pdf_viewer"]
notes_dir = Path(data["notes_dir"]).expanduser()
root = Path(data["root"]).expanduser()
templates_dir = Path(data["templates_dir"]).expanduser()
current_course = Path(data["current_course"]).expanduser()
current_course_watch_file = Path("~/.local/share/current_course").expanduser()
sourcing_notes_template = data["sourcing_notes_template"]
books_dir = current_course / Path(data["books_dir"]).expanduser()
figures_dir = current_course / Path(data["figures_dir"]).expanduser()
assignments_dir = current_course / Path(data["assignments_dir"]).expanduser()
assignment_folders = {
folder: assignments_dir / Path(data["assignment_folders"][folder])
for folder in data["assignment_folders"]
}
rofi_options = data["rofi_options"]
files = data["files"]
folders = data["folders"]
date_format = data["date_format"]