Skip to content

rexept/lunify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lunify 🌙

A simple CLI to-do list application for Linux.

Quickly manage your tasks from the terminal!

Help Page List Tasks


Installation Instructions

Download the package from release.
Then make it executable and move it to a valid path:

chmod +x lunify
sudo mv lunify /usr/local/bin

Note: You don't have to move it to /usr/local/bin (although it's recommended), just a valid exported path.

Build locally

DISCLAIMER: Make sure you have the nholmann/json library installed on your system. Clone the repo:

git clone https://github.com/rexept/lunify

Make the build directory:

cd lunify
mkdir build
cd build

Initialize and run CMake:

cmake -DCMAKE_BUILD_TYPE=Release ..
make

Install globally (requires sudo):

sudo make install

Build Instructions (for development)

Clone the repo:

git clone https://github.com/rexept/lunify

Make the build directory:

cd lunify
mkdir build
cd build

Initialize CMake

cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON .. 

Special thanks to termshot for the amazing screenshots