TUI program for managing your calendar through a grid-like interace.
Go to file
2023-05-06 22:57:15 +02:00
src Calendar: Add input handling, basic input mode, add README.md file, alongside other fixes 2023-05-06 22:57:15 +02:00
.gitignore Initialize the project with basic code 2023-04-18 23:33:40 +02:00
CMakeLists.txt Resizing: re-draw at terminal resize 2023-04-22 11:42:54 +02:00
LICENSE Initial commit 2023-04-18 19:42:18 +02:00
README.md Calendar: Add input handling, basic input mode, add README.md file, alongside other fixes 2023-05-06 22:57:15 +02:00
RESOURCES.md Resizing: re-draw at terminal resize 2023-04-22 11:42:54 +02:00

Vi Scheduler

Vi Scheduler (VIS) is a lightweight tool that brings a Vim-like calendar to your terminal. It allows you to quickly view and edit your schedule, appointments, and tasks without leaving your command-line interface.

Built using C++ and the Ncurses library, Vis offers a fast and efficient way to manage your time in the terminal. It suppors various navigation and editing commands inspired by Vim, such as navigating between days or months, adding and deleting events, and setting reminders.

Features

  • Vim-like navigation and editing commands
  • Multiple view modes: month, week

Dependencies

The following is a list of dependencies that your system needs in order to be able to run Vis.

Building

To build Vis, simply clone this repository and run mkdir build; cd build; cmake ..; make

Resulting binary will be generated inside the /build/src/ folder called.

Usage

To start Vis simply run the vis binary in your terminal alongside the name of the calendar file.

For example: vis school.cal

This will open the default view mode (month) and display the current month's calendar. From there, you can use the following commands to navigate and edit the calendar:

  • h/j/k/l - Move 1 day left/down/up/right
  • u/o - Move 1 month left/right
  • gg - Go to the beginning of the month
  • G - Go to the end of the month
  • i - Enter insert mode for the active day.
  • q - Quit and save the calendar

Todos

The following is a list of things that have been/still have to be completed.

  • basic prototype with vipe (in memory only)
  • writing a calendar to file
  • reading a calendar from a file
  • alerting function
  • logging
  • read input from stdin
  • set reminder

Contributions

Contributions and feedback are welcome! If you have any ideas or suggestions for improving Vis, please submit a pull request or open an issue on Github. Let's make the FOSS community better, together!

License

This project is licensed under the GNU General Public License v3.0. See the LICENSE file for more information.