From 648b969d4f84d91082a49337fb0695c824a6ea91 Mon Sep 17 00:00:00 2001 From: Kris Yotam <75515498+krisyotam@users.noreply.github.com> Date: Thu, 14 May 2026 16:25:18 -0500 Subject: [PATCH] convert README.md to README.txt --- README.md | 39 --------------------------------------- README.txt | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 39 deletions(-) delete mode 100644 README.md create mode 100644 README.txt diff --git a/README.md b/README.md deleted file mode 100644 index dd9a005e6390418df00dcd5c6341b5dc3f8f38ba..0000000000000000000000000000000000000000 --- a/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# stask - -Simple task manager in the suckless tradition. Written in C with SQLite for storage and GTK4 for the optional GUI. - -Tasks are organized into named lists. Each list tracks total and completed items. The CLI works standalone; pass `-g` for the graphical interface. - -## Usage - -``` -stask [-g] launch GUI / list all lists -stask ls list all lists -stask new create a new list -stask rm delete a list -stask show tasks in a list -stask add "text" add a task -stask done mark task complete -stask undo unmark task -stask del delete a task -stask edit edit task text -stask show show task details -``` - -## Configuration - -Edit `config.h` to customize the GTK4 theme. Ships with a monochromatic palette (light and dark) matching krisyotam.com. - -## Requirements - -- C compiler -- SQLite3 -- GTK4 (for GUI mode) - -## Installation - -Edit `config.mk` to match your local setup, then: - -```sh -make clean install -``` diff --git a/README.txt b/README.txt new file mode 100644 index 0000000000000000000000000000000000000000..147359f673bbc1494496a19ef625bdb67f0f4424 --- /dev/null +++ b/README.txt @@ -0,0 +1,49 @@ +stask + + +Simple task manager in the suckless tradition. Written in C with SQLite +for storage and GTK4 for the optional GUI. + +Tasks are organized into named lists. Each list tracks total and +completed items. The CLI works standalone; pass -g for the graphical +interface. + + +USAGE + + stask [-g] launch GUI / list all lists + stask ls list all lists + stask new create a new list + stask rm delete a list + stask show tasks in a list + stask add "text" add a task + stask done mark task complete + stask undo unmark task + stask del delete a task + stask edit edit task text + stask show show task details + + +CONFIGURATION + + Edit config.h to customize the GTK4 theme. Ships with a monochromatic + palette (light and dark) matching krisyotam.com. + + +REQUIREMENTS + + - C compiler + - SQLite3 + - GTK4 (for GUI mode) + + +INSTALLATION + + Edit config.mk to match your local setup, then: + + make clean install + + +LICENSE + + Private. All rights reserved.