X-Git-Url: http://git.scottworley.com/batteryviewer/blobdiff_plain/dc8fff7805270c015ec9ae8baa2e85494abfffc0..refs/heads/master:/batteryviewer.c diff --git a/batteryviewer.c b/batteryviewer.c index 798cddc..a0fae4c 100644 --- a/batteryviewer.c +++ b/batteryviewer.c @@ -1,3 +1,19 @@ +/* batteryviewer: Display battery metrics + * Copyright (C) 2023 Scott Worley + + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, version 3. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . +*/ + // For vasprintf #define _GNU_SOURCE @@ -125,8 +141,11 @@ int main(int argc, char **argv) { .current_filename = sasprintf("%s/current_now", battery_dir), }; - GtkApplication *app = gtk_application_new("com.scottworley.batteryviewer", - G_APPLICATION_DEFAULT_FLAGS); + GtkApplication *app = gtk_application_new( + "com.scottworley.batteryviewer", + // G_APPLICATION_FLAGS_NONE is deprecated, but + // G_APPLICATION_DEFAULT_FLAGS isn't available on Stable Debian yet. + G_APPLICATION_FLAGS_NONE); g_signal_connect(app, "activate", G_CALLBACK(activate), &state); int status = g_application_run(G_APPLICATION(app), argc, argv); g_object_unref(app);