termite/config.h

45 lines
918 B
C
Raw Normal View History

2012-05-22 06:34:35 +02:00
#ifndef CONFIG_H
#define CONFIG_H
#include <stdbool.h>
2012-05-22 11:10:54 +02:00
static const char *url_regex = "(ftp|http)s?://[-a-zA-Z0-9.?$%&/=_~#.,:;+]*";
static const char *url_command = "/usr/bin/firefox";
2012-05-22 11:10:54 +02:00
2012-05-22 12:53:48 +02:00
static const char *font = "Monospace 9";
2012-05-22 06:34:35 +02:00
static const long scrollback_lines = 1000;
static const char *foreground_color = "#dcdccc";
static const char *background_color = "#3f3f3f";
static const char *colors[16] = {
"#3f3f3f",
"#705050",
"#60b48a",
"#dfaf8f",
"#506070",
"#dc8cc3",
"#8cd0d3",
"#dcdccc",
"#709080",
"#dca3a3",
"#c3bf9f",
"#f0dfaf",
"#94bff3",
"#ec93d3",
"#93e0e3",
"#ffffff",
};
static const bool scroll_on_output = false;
static const bool scroll_on_keystroke = true;
2012-05-22 06:55:48 +02:00
static const bool audible_bell = false;
static const bool visible_bell = false;
static const bool mouse_autohide = false;
2012-05-22 06:34:35 +02:00
static const char *term = "xterm-256color";
#endif