2023-08-15 16:45:54 +02:00
|
|
|
Show upcoming events of an .ics file.
|
|
|
|
|
2023-08-15 21:17:24 +02:00
|
|
|
At the moment the standard path to the ics file used by the email client `evolution` is used.\
|
|
|
|
You can set the path to your .ics file in `src/main.c`:
|
2023-08-15 17:10:26 +02:00
|
|
|
```
|
|
|
|
const char ICS_PATH[] = "tests/calendar.ics";
|
|
|
|
```
|
2023-08-15 21:17:24 +02:00
|
|
|
(uncomment some lines after that)
|
2023-08-15 17:10:26 +02:00
|
|
|
|
|
|
|
|
2023-08-15 16:45:54 +02:00
|
|
|
```
|
|
|
|
make run
|
|
|
|
```
|
2023-08-15 17:08:23 +02:00
|
|
|
|
2023-08-15 20:20:39 +02:00
|
|
|
#### installation
|
2023-08-15 17:10:26 +02:00
|
|
|
|
2023-08-15 20:20:39 +02:00
|
|
|
```
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo make install
|
|
|
|
```
|
2023-08-15 17:10:26 +02:00
|
|
|
|
2023-08-15 21:17:24 +02:00
|
|
|
#### uninstall
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo make uninstall
|
|
|
|
```
|
|
|
|
|
|
|
|
#### TODO
|
|
|
|
|
|
|
|
- option -f to choose ics file
|
|
|
|
- improve makefile
|
|
|
|
- tests
|