Compiling
How to compile Conky from source
Building Conky with CMake is straightforward:
- From the top-level source directory, create a build directory and change into it:
mkdir build
cd build
- Run the CMake configuration step:
cmake ../ # pass the path to the sources to cmake
OR
ccmake ../ # use the ncurses interface instead, or try cmake-gui
- Build and install as usual:
make
sudo make install # optional
Conky provides a number of build options. The easiest way to explore them is to
use ccmake or cmake-gui.
Some build-time features, such as documentation generation, require third-party
tools. CMake will usually tell you when one is missing. For documentation
generation, you will need the docbook2X package, which is available on most
distributions.