pub / plain_notes

Plain Text notes for GNULinux
git clone https://src.jayvii.de/pub/plain_notes.git
Home | Log | Files | Exports | Refs | README | RSS

README.md (685B)


      1 # plain_notes
      2 
      3 ## requirements
      4 
      5 - bash
      6 - GNU tools
      7     - cat
      8     - find
      9     - sed
     10     - sort
     11     - uniq
     12     - date
     13 - some text editor (default: "vi")
     14 - [fzf](https://github.com/junegunn/fzf)
     15 
     16 ## Getting started
     17 
     18 Getting the script
     19 
     20 ```bash
     21 mkdir -p ~/.local/bin/
     22 wget https://src.jayvii.de/pub/plain_notes/exports/main.tar.gz -O ~/.local/bin/plain_notes.tar.gz
     23 cd ~/.local/bin/
     24 tar xfvz plain_notes.tar.gz
     25 chmod +x ~/.local/bin/notes.sh
     26 ```
     27 
     28 Ease of use additions
     29 
     30 ```bash
     31 echo "PATH=$PATH:$HOME/.local/bin" >> ~/.bashrc
     32 echo "alias notes=$HOME/.local/bin/notes.sh" >> ~/.bashrc
     33 ```
     34 
     35 Running the script may be done in an endless loop:
     36 
     37 ```bash
     38 while :; ~/.local/bin/notes.sh; done
     39 ```