Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

Commit

Permalink
Add comments to config
Browse files Browse the repository at this point in the history
  • Loading branch information
wvffle committed Jan 8, 2020
1 parent 7253357 commit 91ab53b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,20 @@ void write_config() {
char* file = str_concat(config_dir, "/config");
FILE* fp = fopen(file, "w");

fprintf(fp, "columns %ld\n", config_columns);
fprintf(fp, "columns true\n");
fprintf(fp, "# ___ ___ #\n");
fprintf(fp, "# /'___\\ /'___\\ #\n");
fprintf(fp, "# __ __ __ __ /\\ \\__//\\ \\__/ __ __ #\n");
fprintf(fp, "# /\\ \\/\\ \\/\\ \\ /'__`\\ \\ \\ ,__\\ \\ ,__\\/\\ \\/\\ \\ #\n");
fprintf(fp, "# \\ \\ \\_/ \\_/ \\/\\ \\L\\.\\_\\ \\ \\_/\\ \\ \\_/\\ \\ \\_\\ \\ #\n");
fprintf(fp, "# \\ \\___x___/'\\ \\__/.\\_\\\\ \\_\\ \\ \\_\\ \\/`____ \\ #\n");
fprintf(fp, "# \\/__//__/ \\/__/\\/_/ \\/_/ \\/_/ `/___/> \\ #\n");
fprintf(fp, "# /\\___/ #\n");
fprintf(fp, "# config \\/__/ #\n\n");
fprintf(fp, "# Number of columns in launcher\n");
fprintf(fp, "columns %ld\n\n", config_columns);
fprintf(fp, "# Enable pywal colors\n");
fprintf(fp, "wal_enable false\n\n");
fprintf(fp, "# Run prompt text\n");
fprintf(fp, "prompt \"%s\"\n", config_prompt);

fclose(fp);
Expand Down

0 comments on commit 91ab53b

Please sign in to comment.