Skip to content

Commit

Permalink
Make color chunks disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
onyasumi committed Sep 26, 2023
1 parent 03f1a4b commit 113caa7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ fetch() {

printlogo finish && printf '\n'

colors && printf '\n'
# colors && printf '\n'
}
3 changes: 1 addition & 2 deletions src/logoutils.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ along with vega. If not, see <https://www.gnu.org/licenses/>.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <regex.h>

#define RED "\033[0;31m"
#define GREEN "\033[0;32m"
Expand Down Expand Up @@ -173,7 +172,7 @@ const struct logo freebsd = {

int main(int argc, char** argv) {

fprintf(stderr, "vegautils is a part of vega. Do not run logoutils directly. Doing so may result in undefined behaviour.\n");
fprintf(stderr, "logoutils is a part of vega. Do not run logoutils directly. Doing so may result in undefined behaviour.\n");
fprintf(stderr, "Run 'vega --help' for details.\n");

const struct logo* l = NULL;
Expand Down

0 comments on commit 113caa7

Please sign in to comment.