Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.
samedamci edited this page Mar 30, 2020 · 1 revision

Basic

You must specify path of your notes file as -f or --file argument for rofi-todo.

rofi-todo.py -f example.json 

In this place you can view, add, and delete notes. You can also manual edit your JSON notes file.

You can set key-binding for this script in your WM/DE config.

Example JSON file

{
  "notes": [
    {
      "name": "Push git changes",
      "description": "Push changes from dotfiles to remote GitHub repo"
    },
    {
      "name": "Stay in the cellar",
      "description": "CoVID-19 etc."
    },
    {
      "name": "Make README",
      "description": "Make README.md file into rofi-todo repo"
    }
  ]
}

Reset notes

To reset notes file you can use --init flag after specify path to this file.

rofi-todo -f ~/Notes/notes.json --init

File must exists, you cannot initialize not-exists file!

Clone this wiki locally