Item List
Item List
The Item List tab is a to-do list that doubles as an inventory tracker. Each row has a done checkbox, an optional count, and a name.
Rows
- Plain todos — leave the count blank and the row is just a checklist item. Toggle the checkbox to mark it done; completed items render with a strikethrough.
- Item counts — enter a whole number and the app does Minecraft-style
"stacks of 64" math, showing a breakdown like
2 stacks + 3next to the row. The stack size is 64. - Add / remove — Add Item appends a new row; each row has a trash button to delete it.
File format
Lists are plain text files — one item per line:
<count> <name>
<name> text
A trailing (DONE) marks a completed item. For example:
128 Oak Logs
64 Iron Ingot (DONE)
Build the nether portal
5 Ender Pearl text
That renders as two counted rows (2 stacks of oak logs; 1 stack of iron,
struck through), a plain todo, and a small count (0 stacks + 5).
Saving & live reload
- Open… loads a
.txtfile. - Edits auto-save atomically, with a save-status indicator in the footer.
- The last-opened file reopens automatically on the next launch.
- The list watches the file on disk and live-reloads when it's edited in another program — so you can keep your list in your editor, a Git repo, or a cloud-synced folder and the app stays in sync.
Because the list is broadcast by the OBS overlay , any edit — in the app or on disk — shows up on your stream immediately.
On this page