~kris/hacks

stask

stask/README.txt -rw-r--r-- 1.1 KiB
648b969d — Kris Yotam convert README.md to README.txt 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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 <list>        create a new list
  stask rm <list>         delete a list
  stask <list>            show tasks in a list
  stask <list> add "text" add a task
  stask <list> done <id>  mark task complete
  stask <list> undo <id>  unmark task
  stask <list> del <id>   delete a task
  stask <list> edit <id>  edit task text
  stask <list> show <id>  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.