From de7fa594fa190f01f00a2f0d7eab007af02a1b64 Mon Sep 17 00:00:00 2001 From: raveit Date: Jun 28 2013 22:52:18 +0000 Subject: rename better_default patch --- diff --git a/better_defaults.patch b/better_defaults.patch deleted file mode 100644 index cff5794..0000000 --- a/better_defaults.patch +++ /dev/null @@ -1,78 +0,0 @@ -diff -uNrp a/src/org.mate.terminal.gschema.xml.in b/src/org.mate.terminal.gschema.xml.in ---- a/src/org.mate.terminal.gschema.xml.in 2013-04-09 06:54:21.000000000 -0700 -+++ b/src/org.mate.terminal.gschema.xml.in 2013-06-17 18:54:06.173522514 -0700 -@@ -89,22 +89,22 @@ - True if the menubar should be shown in new windows, for windows/tabs with this profile. - - -- '#000000' -+ '#E6E6E6' - Default color of text in the terminal - Default color of text in the terminal, as a color specification (can be HTML-style hex digits, or a color name such as "red"). - - -- '#FFFFDD' -+ '#000000' - Default color of terminal background - Default color of terminal background, as a color specification (can be HTML-style hex digits, or a color name such as "red"). - - -- '#000000' -+ '#FFFFFF' - Default color of bold text in the terminal - Default color of bold text in the terminal, as a color specification (can be HTML-style hex digits, or a color name such as "red"). This is ignored if bold_color_same_as_fg is true. - - -- true -+ false - Whether bold text should use the same color as normal text - If true, boldface text will be rendered using the same color as normal text. - -@@ -159,7 +159,7 @@ - Number of scrollback lines to keep around. You can scroll back in the terminal by this number of lines; lines that don't fit in the scrollback are discarded. If scrollback_unlimited is true, this value is ignored. - - -- false -+ true - Whether an unlimited number of lines should be kept in scrollback - If true, scrollback lines will never be discarded. The scrollback history is stored on disk temporarily, so this may cause the system to run out of disk space if there is a lot of output to the terminal. - -diff -uNrp a/src/terminal-profile.c b/src/terminal-profile.c ---- a/src/terminal-profile.c 2013-04-09 06:54:21.000000000 -0700 -+++ b/src/terminal-profile.c 2013-06-17 18:48:58.788015410 -0700 -@@ -127,8 +127,8 @@ enum - - /* Keep these in sync with the GSettings schema! */ - #define DEFAULT_ALLOW_BOLD (TRUE) --#define DEFAULT_BACKGROUND_COLOR ("#FFFFDD") --#define DEFAULT_BOLD_COLOR_SAME_AS_FG (TRUE) -+#define DEFAULT_BACKGROUND_COLOR ("#000000") -+#define DEFAULT_BOLD_COLOR_SAME_AS_FG (FALSE) - #define DEFAULT_BACKGROUND_DARKNESS (0.5) - #define DEFAULT_BACKGROUND_IMAGE_FILE ("") - #define DEFAULT_BACKGROUND_IMAGE (NULL) -@@ -143,13 +143,13 @@ enum - #define DEFAULT_DELETE_BINDING (VTE_ERASE_DELETE_SEQUENCE) - #define DEFAULT_EXIT_ACTION (TERMINAL_EXIT_CLOSE) - #define DEFAULT_FONT ("Monospace 12") --#define DEFAULT_FOREGROUND_COLOR ("#000000") -+#define DEFAULT_FOREGROUND_COLOR ("#E6E6E6") - #define DEFAULT_LOGIN_SHELL (FALSE) - #define DEFAULT_NAME (NULL) - #define DEFAULT_PALETTE (terminal_palettes[TERMINAL_PALETTE_TANGO]) - #define DEFAULT_SCROLL_BACKGROUND (TRUE) - #define DEFAULT_SCROLLBACK_LINES (512) --#define DEFAULT_SCROLLBACK_UNLIMITED (FALSE) -+#define DEFAULT_SCROLLBACK_UNLIMITED (TRUE) - #define DEFAULT_SCROLLBAR_POSITION (TERMINAL_SCROLLBAR_RIGHT) - #define DEFAULT_SCROLL_ON_KEYSTROKE (TRUE) - #define DEFAULT_SCROLL_ON_OUTPUT (FALSE) -@@ -161,7 +161,7 @@ enum - #define DEFAULT_USE_CUSTOM_DEFAULT_SIZE (FALSE) - #define DEFAULT_USE_SKEY (TRUE) - #define DEFAULT_USE_SYSTEM_FONT (TRUE) --#define DEFAULT_USE_THEME_COLORS (TRUE) -+#define DEFAULT_USE_THEME_COLORS (FALSE) - #define DEFAULT_VISIBLE_NAME (N_("Unnamed")) - #define DEFAULT_WORD_CHARS ("-A-Za-z0-9,./?%&#:_=+@~") -