merge
This commit is contained in:
commit
438bfd0f75
2 changed files with 3 additions and 1 deletions
3
ccc.c
3
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':
|
||||
|
|
1
config.h
1
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 */
|
||||
|
|
Loading…
Reference in a new issue