├── LICENSE ├── README.md ├── requirements.txt └── tempus ├── Calendar.py ├── Dashboard.py ├── Settings.py ├── Widgets.py ├── main.py └── resources ├── dark └── demo.qss ├── icons ├── Designer.png ├── README.md ├── appointments.png ├── cake.png ├── icon.png ├── special_day.png ├── stats.svg └── todo.png ├── light └── demo.qss └── misc ├── config.json ├── reminders.db ├── special_dates.db └── todos.db /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/requirements.txt -------------------------------------------------------------------------------- /tempus/Calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/Calendar.py -------------------------------------------------------------------------------- /tempus/Dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/Dashboard.py -------------------------------------------------------------------------------- /tempus/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/Settings.py -------------------------------------------------------------------------------- /tempus/Widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/Widgets.py -------------------------------------------------------------------------------- /tempus/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/main.py -------------------------------------------------------------------------------- /tempus/resources/dark/demo.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/dark/demo.qss -------------------------------------------------------------------------------- /tempus/resources/icons/Designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/Designer.png -------------------------------------------------------------------------------- /tempus/resources/icons/README.md: -------------------------------------------------------------------------------- 1 | ## Icons and Banners. 2 | -------------------------------------------------------------------------------- /tempus/resources/icons/appointments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/appointments.png -------------------------------------------------------------------------------- /tempus/resources/icons/cake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/cake.png -------------------------------------------------------------------------------- /tempus/resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/icon.png -------------------------------------------------------------------------------- /tempus/resources/icons/special_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/special_day.png -------------------------------------------------------------------------------- /tempus/resources/icons/stats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/stats.svg -------------------------------------------------------------------------------- /tempus/resources/icons/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/icons/todo.png -------------------------------------------------------------------------------- /tempus/resources/light/demo.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/light/demo.qss -------------------------------------------------------------------------------- /tempus/resources/misc/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/misc/config.json -------------------------------------------------------------------------------- /tempus/resources/misc/reminders.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/misc/reminders.db -------------------------------------------------------------------------------- /tempus/resources/misc/special_dates.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/misc/special_dates.db -------------------------------------------------------------------------------- /tempus/resources/misc/todos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohankishore/Tempus/HEAD/tempus/resources/misc/todos.db --------------------------------------------------------------------------------