Added feature to change by percentage. Added makefile. Added shell script to modify ownership of the file that affects brightness

This commit is contained in:
amazing-username
2017-03-14 22:15:37 -05:00
parent 622d7bd2e8
commit 9e85a65aa9
7 changed files with 77 additions and 37 deletions
+4 -4
View File
@@ -9,11 +9,11 @@ public:
void grabBrightness();
void grabMaxBrightness();
unsigned getCurrentBrightness() const;
unsigned getMaxBrightness() const;
static unsigned getCurrentBrightness();
static unsigned getMaxBrightness();
private:
unsigned currentBrightness;
unsigned maxBrightness;
static unsigned currentBrightness;
static unsigned maxBrightness;
};
#endif