university-setup/scripts/rofi-lectures.py

35 lines
868 B
Python
Raw Normal View History

2019-09-15 20:42:11 +02:00
#!/usr/bin/python3
from courses import Courses
from rofi import rofi
from utils import generate_short_title
from config import MAX_LEN
2019-09-15 20:42:11 +02:00
2021-09-16 18:02:36 +02:00
script = Courses().current.notes
lectures = script.lectures
2019-09-15 20:42:11 +02:00
sorted_lectures = sorted(lectures, key=lambda l: -l.number)
options = [
"{number: >2}. <b>{title: <{fill}}</b> <span size='smaller'>{date} ({week})</span>".format(
fill=MAX_LEN,
number=lecture.number,
title=generate_short_title(lecture.title),
date=lecture.date.strftime('%a %d %b'),
week=lecture.week
)
for lecture in sorted_lectures
]
key, index, selected = rofi('Select lecture', options, [
'-lines', 5,
'-markup-rows',
'-kb-row-down', 'Down',
'-kb-custom-1', 'Ctrl+n'
])
if key == 0:
sorted_lectures[index].edit()
elif key == 1:
new_lecture = script.new_lecture()
2019-09-15 20:42:11 +02:00
new_lecture.edit()