commit 31193ae219dbc8295f8340dacc71be263b35cb8c
parent d9c21e6fcdfc804998bedd7aa1afdf39792079b4
Author: Spencer Williams <spnw@plexwave.org>
Date: Thu, 27 Jul 2023 18:57:43 -0400
Add version flag
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/mpc-bar.m b/mpc-bar.m
@@ -8,6 +8,7 @@
#include <stdlib.h>
#include <string.h>
+#define VERSION "0.1"
#define TITLE_MAX_LENGTH 96
#define SLEEP_INTERVAL 0.2
@@ -450,8 +451,14 @@ cleanup:
@end
int main(int argc, char *argv[]) {
+ if (argc > 1 && strcmp(argv[1], "-v") == 0) {
+ puts("MPC Bar "VERSION);
+ return 0;
+ }
+
[NSApplication sharedApplication];
[MPDController new];
[NSApp run];
+
return 0;
}