bob/bob.h

21 lines
390 B
C
Raw Normal View History

2024-05-21 22:24:01 +02:00
#ifndef BOB_H_H
#define BOB_H_H
#define VERSION "1.0.0"
/* Not recommend modifiying this unless you know what you are doing */
#define MAX_PKG_NAME_LENGTH 128
#define MAX_PKGS 128
/* Must be github repo */
#define REPO "night0721/bob-packages"
#define BRANCH "main"
#define DEST_DIR "/usr/local/bin/"
#define RED "\033[0;31m"
#define GRN "\033[0;32m"
#define CRESET "\033[0m"
#endif