├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── bindings.go ├── brightness.go ├── devices.go ├── funcd.service ├── main.go ├── touchpad.go ├── users.go └── volume.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/README.md -------------------------------------------------------------------------------- /bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/bindings.go -------------------------------------------------------------------------------- /brightness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/brightness.go -------------------------------------------------------------------------------- /devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/devices.go -------------------------------------------------------------------------------- /funcd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/funcd.service -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/main.go -------------------------------------------------------------------------------- /touchpad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/touchpad.go -------------------------------------------------------------------------------- /users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/users.go -------------------------------------------------------------------------------- /volume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egormalyutin/funcd/HEAD/volume.go --------------------------------------------------------------------------------