ARTSII is a terminal-based drawing program written in C using the ncurses library. It allows users to create simple ASCII graphics directly inside the terminal by moving the cursor and drawing shapes such as rectangles, lines, and text. The interface is interactive and controlled entirely through the keyboard, with support for basic editing actions and an integrated help window.
Make sure you have a C compiler and the ncurses library installed on your system.
sudo apt update
sudo apt install build-essential libncurses5-dev libncursesw5-devbrew install ncurses
sudo pacman -S base-devel ncurses
gcc artsii.c -o artsii -lncurses
./artsii
