├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md └── cmd └── brightness └── main.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/macos-brightness/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | macos-brightness 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/macos-brightness/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/macos-brightness/HEAD/README.md -------------------------------------------------------------------------------- /cmd/brightness/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafredri/macos-brightness/HEAD/cmd/brightness/main.go --------------------------------------------------------------------------------