Iosevka font, Iceberg theme

This commit is contained in:
Roberto Alsina 2022-06-25 18:39:06 -03:00
parent 504d878b0b
commit bd92e8df38
2 changed files with 60 additions and 83 deletions

View File

@ -5,8 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "mono:pixelsize=16:antialias=true:autohint=true";
static char *font2[] = { "mono:pixelsize=16:antialias=true:autohint=true" };
static char *font = "Iosevka Term:pixelsize=16:antialias=true:autohint=true";
static char *font2[] = { "Iosevka Term:pixelsize=16:antialias=true:autohint=true" };
static int borderpx = 2;
/*
@ -89,43 +89,32 @@ float alpha = 1;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#1f1f1f", /* hard contrast: #1d2021 / soft contrast: #32302f */
"#f81118",
"#2dc55e",
"#ecba0f",
"#2a84d2",
"#4e5ab7",
"#1081d6",
"#d6dbe5",
"#d6dbe5",
"#de352e",
"#1dd361",
"#f3bd09",
"#1081d6",
"#5350b9",
"#0f7ddb",
"#ffffff",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#282828", /* 256 -> bg */
"#ebdbb2", /* 257 -> fg */
"#add8e6", /* 258 -> cursor */
"#161821", /* black */
"#e27878", /* red */
"#b4be82", /* green */
"#e2a478", /* yellow */
"#84a0c6", /* blue */
"#a093c7", /* magenta */
"#89b8c2", /* cyan */
"#c6c8d1", /* white */
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
/* 8 bright colors */
"#6b7089", /* black */
"#e98989", /* red */
"#c0ca8e", /* green */
"#e9b189", /* yellow */
"#91acd1", /* blue */
"#ada0d3", /* magenta */
"#95c4ce", /* cyan */
"#d2d4de", /* white */
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
static unsigned int defaultcs = 258;
unsigned int defaultfg = 7;
unsigned int defaultbg = 0;
static unsigned int defaultcs = 7;
static unsigned int defaultrcs = 0;
/*
* Default shape of cursor
* 2: Block ("")

View File

@ -5,8 +5,8 @@
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char *font = "mono:pixelsize=16:antialias=true:autohint=true";
static char *font2[] = { "mono:pixelsize=16:antialias=true:autohint=true" };
static char *font = "Iosevka Term:pixelsize=16:antialias=true:autohint=true";
static char *font2[] = { "Iosevka Term:pixelsize=16:antialias=true:autohint=true" };
static int borderpx = 2;
/*
@ -89,43 +89,32 @@ float alpha = 1;
/* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = {
/* 8 normal colors */
"#1f1f1f", /* hard contrast: #1d2021 / soft contrast: #32302f */
"#f81118",
"#2dc55e",
"#ecba0f",
"#2a84d2",
"#4e5ab7",
"#1081d6",
"#d6dbe5",
"#d6dbe5",
"#de352e",
"#1dd361",
"#f3bd09",
"#1081d6",
"#5350b9",
"#0f7ddb",
"#ffffff",
[255] = 0,
/* more colors can be added after 255 to use with DefaultXX */
"#282828", /* 256 -> bg */
"#ebdbb2", /* 257 -> fg */
"#add8e6", /* 258 -> cursor */
"#161821", /* black */
"#e27878", /* red */
"#b4be82", /* green */
"#e2a478", /* yellow */
"#84a0c6", /* blue */
"#a093c7", /* magenta */
"#89b8c2", /* cyan */
"#c6c8d1", /* white */
/* more colors can be added after 255 to use with DefaultXX */
"#cccccc",
"#555555",
/* 8 bright colors */
"#6b7089", /* black */
"#e98989", /* red */
"#c0ca8e", /* green */
"#e9b189", /* yellow */
"#91acd1", /* blue */
"#ada0d3", /* magenta */
"#95c4ce", /* cyan */
"#d2d4de", /* white */
};
/*
* Default colors (colorname index)
* foreground, background, cursor, reverse cursor
*/
unsigned int defaultfg = 257;
unsigned int defaultbg = 256;
static unsigned int defaultcs = 258;
unsigned int defaultfg = 7;
unsigned int defaultbg = 0;
static unsigned int defaultcs = 7;
static unsigned int defaultrcs = 0;
/*
* Default shape of cursor
* 2: Block ("")
@ -170,12 +159,11 @@ static MouseShortcut mshortcuts[] = {
/* mask button function argument release */
{ Button4, XK_NO_MOD, "\031" },
{ Button5, XK_NO_MOD, "\005" },
{ XK_NO_MOD, Button4, kscrollup, {.i = 1} },
{ XK_NO_MOD, Button5, kscrolldown,{.i = 1} },
};
/* Internal keyboard shortcuts. */
#define MODKEY Mod1Mask
#define TERMMOD (ControlMask|ShiftMask)
static Shortcut shortcuts[] = {
/* mask keysym function argument */