A quick program to make the output of qdbus more readable.
Go to file
2025-01-25 10:52:43 +01:00
src Initial commit. 2025-01-23 14:36:28 +01:00
.gitignore Add object files to gitignore. 2025-01-23 15:48:11 +01:00
LICENSE Initial commit. 2025-01-23 14:36:28 +01:00
Makefile Initial commit. 2025-01-23 14:36:28 +01:00
README.md Add info to README.md 2025-01-25 10:52:43 +01:00

DBus Prettifier

I noticed that when working with qdbus that I would get long and unformatted outputs that are extremely difficult to read. This small program will prettify a file with the output so that it is much more readable.

Usage

To run the program, simply run it as follows:

$ qdbus-prettifier <in-file> <out-file>

Building

Requirements:

  • C compiler that supports GNU99 (GCC recommended).
  • (GNU) Make

Build with make:

$ make
cc  -std=gnu99 -Wall -Wextra -Wfatal-errors -Werror -O2 -DNDEBUG   -c -o src/main.o src/main.c
cc -o dbus-prettifier src/main.o

Install with make install:

$ sudo make install
install -Dm755 dbus-prettifier /usr/local/bin/

License

This program is licensed under the terms & conditions of the Zlib License.