Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ddcctl submodule #71

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,6 @@ Carthage/Build
# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md

fastlane/report.xml
fastlane/screenshots
fastlane/screenshots

.DS_Store
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "ddcctl"]
path = ddcctl
url = https://github.com/kfix/ddcctl
File renamed without changes.
4 changes: 2 additions & 2 deletions BrightnessMenulet/AppDelegate.m → AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {

NSUserDefaults* defaults = [NSUserDefaults standardUserDefaults];

if(![[[defaults dictionaryRepresentation] allKeys] containsObject:@"LMUUpdateInterval"])
if (![[[defaults dictionaryRepresentation] allKeys] containsObject:@"LMUUpdateInterval"])
[defaults setFloat:0.5 forKey:@"LMUUpdateInterval"];

if([defaults boolForKey:@"autoBrightOnStartup"])
if ([defaults boolForKey:@"autoBrightOnStartup"])
[lmuCon startMonitoring];
}

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges</key>
<true/>
<key>SnapshotAutomaticallyBeforeSignificantChanges</key>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
Binary file removed BrightnessMenulet/.DS_Store
Binary file not shown.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed BrightnessMenulet/Brightness_Menulet.zip
Binary file not shown.
208 changes: 0 additions & 208 deletions BrightnessMenulet/ddc.c

This file was deleted.

Loading