Dup Ver Goto 📝

CliExamples1

PT2/macos/xcode/build does not exist
To
17 lines, 44 words, 362 chars Page 'CliExamples1' does not exist.

To build from the command line without the GUI.

displayctl

The source is here

To build

gcc -o displayctl main.c -framework IOKit -framework CoreFoundation

Or a Makefile

all: displayctl

displayctl: main.c
        gcc -o displayctl -framework IOKit -framework CoreFoundation main.c