This commit is contained in:
Daniel Langbein 2025-02-11 17:36:57 +01:00
commit 65192d20f8
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002
4 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "pdt"
version = "0.1.0"
edition = "2021"
[dependencies]

4
README Normal file
View File

@ -0,0 +1,4 @@
# pdt - PleaseDisturbTimer
A timer that notifies you - even if "do not disturb" is enabled.

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}