From b10548a8ab980042817e1581a85e392f8e7b37a3 Mon Sep 17 00:00:00 2001 From: t Date: Wed, 12 Feb 2025 15:13:44 +0100 Subject: [PATCH] Added readme --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..fd1a05b --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# SimpleNote +SimpleNote is a simple and intuitiv Note displaying Program. + +## Installation +```bash +git clone https://git.timoniemann.de/t/SimpleNote.git +cd SimpleNote +dotnet publish -c Release -r [OS f.e. linux-x64] --self-contained true +cp -r bin/Release/net9.0/linux-x64 ./SimpleNote +sudo mv SimpleNote /opt/ +sudo ln -s /opt/SimpleNote/SimpleNote /usr/bin/SimpleNote +``` + +## Usage +Open a Terminal and run: +```bash +SimpleNote "Example Text" +``` + +If u want to dispatch the Window from the Terminal run: +```bash +nohup SimpleNote "Example Text" & +```