Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
fix: Change default brightness and volume
Browse files Browse the repository at this point in the history
  • Loading branch information
robshape committed Oct 13, 2023
1 parent eda90b2 commit 39ae587
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libmsettings/msettings.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ typedef struct Settings {
} Settings;
static Settings DefaultSettings = {
.version = SETTINGS_VERSION,
.brightness = 2,
.headphones = 4,
.brightness = 4,
.headphones = 8,
.speaker = 8,
.jack = 0,
};
Expand Down Expand Up @@ -72,7 +72,7 @@ void InitSettings(void) {
// these shouldn't be persisted
// settings->jack = 0;
}
printf("brightness: %i\nspeaker: %i \n", settings->brightness, settings->speaker);
printf("brightness: %i\nspeaker: %i \nheadphones: %i \n", settings->brightness, settings->speaker, settings->headphones);

SetVolume(GetVolume());
SetBrightness(GetBrightness());
Expand Down

0 comments on commit 39ae587

Please sign in to comment.