diff --git a/ccc.c b/ccc.c index 85f4b8c..2905eeb 100644 --- a/ccc.c +++ b/ccc.c @@ -42,6 +42,7 @@ long current_selection = 0; bool dirs_size = DIRS_SIZE; bool show_hidden = SHOW_HIDDEN; bool file_details = SHOW_DETAILS; +char *trash_dir; char *cwd; char *p_cwd; /* previous cwd */ char *trash_dir; @@ -242,7 +243,7 @@ int main(int argc, char** argv) char *trash_dir = check_trash_dir(); if (trash_dir != NULL) change_dir(trash_dir, 0, 0); - break; + break; /* show directories' sizes */ case 'A': diff --git a/config.h b/config.h index e9b48ac..9f9dd7d 100644 --- a/config.h +++ b/config.h @@ -8,6 +8,7 @@ #define DRAW_BORDERS true /* Draw borders around windows? */ #define DRAW_PREVIEW true /* Draw file preview? */ + #define SHOW_HIDDEN true /* show hidden files/dotfiles in preview */ #define SHOW_DETAILS true /* show file details */ #define SHOW_ICONS true /* show file icons */