From 11942d1266298d14054f4952a8959e0703664cff Mon Sep 17 00:00:00 2001 From: "Samuel G. Fadel" Date: Mon, 18 Feb 2013 12:21:41 -0300 Subject: Deleted config.def.h. Chaged configuration constants to have a "CONFIG_" prefix. Added CONFIG_SCROLLBACK_LINES. Delegation of ctrl+shift+c and ctrl+shift+v to the default copy/paste shortcuts from VTE. Some minor comments all over the code. --- src/config.def.h | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) delete mode 100644 src/config.def.h (limited to 'src/config.def.h') diff --git a/src/config.def.h b/src/config.def.h deleted file mode 100644 index 55b1cce..0000000 --- a/src/config.def.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * config.h - * - * Configuration file. Modify these to customize T. - */ - -/* Minimum width/height, in characters */ -#define MIN_WIDTH 20 -#define MIN_HEIGHT 5 - -/* Font name */ -#define FONT_NAME "Monospace 9" - -/* Color palette definition */ -/* PALETTE_SIZE must be 8, 16, 24 or between 25 and 255, inclusive */ -#define PALETTE_SIZE 16 - -static const char *COLOR_PALETTE[PALETTE_SIZE] = { - "#000000", /* 0 Black */ - "#a5372e", /* 1 Red */ - "#4a663c", /* 2 Green */ - "#7c5618", /* 3 Yellow */ - "#566060", /* 4 Blue */ - "#8e4948", /* 5 Magenta */ - "#6d5b42", /* 6 Cyan */ - "#8d8d8d", /* 7 White */ - "#2b2b2b", /* 8 Black */ - "#e06c5c", /* 9 Red */ - "#7b996c", /* 10 Green */ - "#b38849", /* 11 Yellow */ - "#889393", /* 12 Blue */ - "#c67c78", /* 13 Magenta */ - "#a28d73", /* 14 Cyan */ - "#c6c6c6", /* 15 White */ -}; - -/* Foreground and background. */ -#define FOREGROUND_COLOR "#757575" /* COLOR_PALETTE[7] */ -#define BACKGROUND_COLOR "#151515" /* COLOR_PALETTE[0] */ - -/* Mouse auto-hide (TRUE or FALSE) */ -#define MOUSE_AUTOHIDE TRUE - -/* Visible bell (TRUE or FALSE) */ -#define VISIBLE_BELL FALSE - -/* Audible bell (TRUE or FALSE) */ -#define AUDIBLE_BELL FALSE -- cgit v1.2.3