Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vncsmyrnk/todayiwillnotify_old
A notification module for the todayiwill CLI
https://github.com/vncsmyrnk/todayiwillnotify_old
notifications rust
Last synced: 11 days ago
JSON representation
A notification module for the todayiwill CLI
- Host: GitHub
- URL: https://github.com/vncsmyrnk/todayiwillnotify_old
- Owner: vncsmyrnk
- License: gpl-3.0
- Archived: true
- Created: 2024-06-30T18:06:09.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-01T22:24:51.000Z (5 months ago)
- Last Synced: 2024-11-05T12:17:30.602Z (11 days ago)
- Topics: notifications, rust
- Language: Rust
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notification Daemon for todayiwill
![Rust](https://img.shields.io/badge/rust-1.79+-green?logo=rust)
Daemon for notifying appointments created with [todayiwill](https://github.com/vncsmyrnk/todayiwill).
## 🔧 Development with docker
```bash
docker run --rm -it \
-v "$(pwd)":/home/dev/app \
-v ~/.ssh:/home/dev/.ssh \
-v /run/user/1000/bus:/run/user/1000/bus \
-v /tmp/.X11-unix:/tmp/.X11-unix \
-e DBUS_SESSION_BUS_ADDRESS="$DBUS_SESSION_BUS_ADDRESS" \
-e DISPLAY="$DISPLAY" \
-e GIT_USERNAME="$(git config --list | grep "user.name" | cut -d = -f2)" \
-e GIT_EMAIL="$(git config --list | grep "user.email" | cut -d = -f2)" \
-u dev \
--cpus 2 \
--workdir /home/dev/app \
ghcr.io/vncsmyrnk/rust-dev:latest bash
```### Dev Tools
Once inside the container, you can run `$ sudo -E ./dev-setup.sh` to install dev dependencies like `git` and `nvim`.