Skip to content

Latest commit

 

History

History
43 lines (39 loc) · 954 Bytes

File metadata and controls

43 lines (39 loc) · 954 Bytes

PDFC

📋 Overview

This project is a simple PDF viewer built using C, GTK3, and Poppler. It allows users to open and view PDF files with basic navigation features. The application is designed to be lightweight.

You can install dependencies on your system using the following commands:

Debian-based Systems

sudo apt-get install libgtk-3-dev libpoppler-glib-dev

Arch-based Systems

sudo pacman -S gtk3 poppler

📥 Installation

  1. Clone the repository:
git clone https://github.com/nhrx1337/pdfc.git
cd pdfc/
  1. Compile the application:
make

Or install the application:

sudo make install
  1. Run the application:
./pdfc <path/to/your/file.pdf>

or open directly:

./pdfc

If you installed the application, you can run it directly from the terminal without the ./ prefix.

❌ Uninstallation

sudo make uninstall