*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
-static char *font = "Liberation Mono:pixelsize=12:antialias=true:autohint=true";
+static char *font = "Fira Mono:style=Medium:pixelsize=13:scalable=true:antialias=true:autohint=true";
static int borderpx = 2;
/*
* 4: value of shell in /etc/passwd
* 5: value of shell in config.h
*/
-static char *shell = "/bin/sh";
+static char *shell = "/bin/bash";
char *utmp = NULL;
/* scroll program: to enable use a string like "scroll" */
char *scroll = NULL;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
- /* 8 normal colors */
- "black",
- "red3",
- "green3",
- "yellow3",
- "blue2",
- "magenta3",
- "cyan3",
- "gray90",
-
- /* 8 bright colors */
- "gray50",
- "red",
- "green",
- "yellow",
- "#5c5cff",
- "magenta",
- "cyan",
- "white",
+
+ /* 8 normal colors 8*/
+ "#15161E",
+ "#a7566e",
+ "#5e9e3a",
+ "#a07f48",
+ "#4a6aa7",
+ "#8b6aa7",
+ "#4d8faf",
+ "#99a1c6",
+
+ /* 8 bright colors */
+ "#414868",
+ "#f7768e",
+ "#9ece6a",
+ "#e0af68",
+ "#7aa2f7",
+ "#bb9af7",
+ "#7dcfff",
+ "#c0caf5",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
- "#cccccc",
- "#555555",
- "gray90", /* default foreground colour */
- "black", /* default background colour */
+ "#c0caf5", /* default foreground colour */
+ "#1a1b26", /* default background colour */
};
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
-unsigned int defaultfg = 258;
-unsigned int defaultbg = 259;
+unsigned int defaultfg = 256;
+unsigned int defaultbg = 257;
unsigned int defaultcs = 256;
static unsigned int defaultrcs = 257;