feat(config file): add a config file

This commit is contained in:
2025-09-23 22:46:19 -04:00
parent b4715770db
commit 80dde85a2e
11 changed files with 229 additions and 22 deletions

View File

@@ -15,7 +15,7 @@ char
FILE *f;
/* open up the battery capacity for reading */
d = concat(battery_dir, "/capacity");
d = concat(battery_status_path, "/capacity");
f = fopen(d, "r");
free(d);