mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 16:00:39 +01:00
Remove styles and add option to specify custom color output in RGB format
This commit is contained in:
13
src/args.h
13
src/args.h
@@ -2,13 +2,22 @@
|
||||
#define __ARGS__
|
||||
|
||||
#include <stdbool.h>
|
||||
#include "printer.h"
|
||||
#include <stdint.h>
|
||||
|
||||
bool parse_args(int argc, char* argv[]);
|
||||
STYLE get_style();
|
||||
bool show_help();
|
||||
bool show_levels();
|
||||
bool show_version();
|
||||
bool verbose_enabled();
|
||||
struct color* get_color1();
|
||||
struct color* get_color2();
|
||||
|
||||
struct color {
|
||||
int32_t R;
|
||||
int32_t G;
|
||||
int32_t B;
|
||||
};
|
||||
|
||||
#include "printer.h"
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user