abhiraj2 / liszt

Save snippets of information quickly through the command line

Home Page:https://liszt.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Liszt

Liszt makes it easy to jot down thoughts in the command line, and keep ideas clear in separate notes.

View Liszt documentation here

Documentation Status Build Status Language grade: C/C++ liszt license liszt release Open Source Love

Table of Contents

Installation

Please note that at the moment, Liszt is only tested on macOS, but it will build on linux.

Please also note that v1.1.8 does change some existing functionality that will cause incompatibility with the existing Liszt file system on your computer. If you already have Liszt installed, before updating to v1.1.8, please go to your ~/.liszt directory and rename the directory called 'notes' to 'main'.

Homebrew

In your terminal

$ brew tap liszt-music/liszt
$ brew install lst

These commands will install the tap of Liszt on your system and then install the executable 'lst' in /usr/local/bin.

Git Clone

In your terminal

$ git clone https://github.com/scamacho23/liszt.git
$ cd liszt 
$ cmake .
$ make
$ make install

Liszt relies on cmake for compilation and linking so we recommend having cmake installed on your system. Alternatively, the following should do the trick (we use clang but any c compiler should work):

$ git clone https://github.com/scamacho23/liszt.git
$ cd liszt 
$ clang src/main.c -o lst -g
$ ln -s lst /usr/local/bin/lst

Pkg Installer

Click on this to be redirected to the local liszt-1.1.8.pkg file. Click 'download' on the right side of the page to download the package installer.

Any issues with installation should be emailed to liszt.central@gmail.com

Usage

Coming soon!

Contributing to the Project

For more information, see the CONTRIBUTING.md file. This project is fully open-source. We appreciate all the help we can get and are very open to beginners and anyone interested in helping.

Community Information

There is a Slack channel for contributors. If you would like to join the channel, make a pull request and include in the comment that you would like to be added (and the email to be used for the invite).

About

Save snippets of information quickly through the command line

https://liszt.readthedocs.io

License:GNU General Public License v3.0


Languages

Language:C 99.9%Language:CMake 0.1%