├── .gitignore ├── LICENSE ├── README.md ├── data ├── meson.build └── pdftag.desktop ├── flatpak └── com.github.arrufat.pdftag.json ├── meson.build ├── pdftag.png └── src └── main.vala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/README.md -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/pdftag.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/data/pdftag.desktop -------------------------------------------------------------------------------- /flatpak/com.github.arrufat.pdftag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/flatpak/com.github.arrufat.pdftag.json -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/meson.build -------------------------------------------------------------------------------- /pdftag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/pdftag.png -------------------------------------------------------------------------------- /src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrufat/pdftag/HEAD/src/main.vala --------------------------------------------------------------------------------