Compare commits
3 commits
34c38cddc0
...
39029db1c1
Author | SHA1 | Date | |
---|---|---|---|
|
39029db1c1 | ||
|
05c4d22706 | ||
|
b147423aee |
3 changed files with 159 additions and 0 deletions
18
dmenu/config.h
Normal file
18
dmenu/config.h
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
/* .. */
|
||||||
|
|
||||||
|
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
||||||
|
/* -fn option overrides fonts[0]; default X11 font or font set */
|
||||||
|
static const char *fonts[] = {
|
||||||
|
"DejaVuSansM Nerd Font:size=10:style=Bold"
|
||||||
|
};
|
||||||
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||||
|
static const char *colors[SchemeLast][2] = {
|
||||||
|
/* fg bg */
|
||||||
|
[SchemeNorm] = { "#fef9cd", "#270e05" },
|
||||||
|
[SchemeSel] = { "#ffffff", "#97aee4" },
|
||||||
|
[SchemeOut] = { "#fef9cd", "#94b5ea" },
|
||||||
|
};
|
||||||
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||||
|
static unsigned int lines = 0;
|
||||||
|
|
||||||
|
/* .. */
|
56
dwm/config.h
Normal file
56
dwm/config.h
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
/* appearance */
|
||||||
|
static const unsigned int borderpx = 1; /* border pixel of windows */
|
||||||
|
static const unsigned int snap = 32; /* snap pixel */
|
||||||
|
static const unsigned int gappih = 5; /* horiz inner gap between windows */
|
||||||
|
static const unsigned int gappiv = 5; /* vert inner gap between windows */
|
||||||
|
static const unsigned int gappoh = 40; /* horiz outer gap between windows and screen edge */
|
||||||
|
static const unsigned int gappov = 40; /* vert outer gap between windows and screen edge */
|
||||||
|
static int smartgaps = 0; /* 1 means no outer gap when there is only one window */
|
||||||
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
|
static const char *fonts[] = { "DejaVuSansM Nerd Font:size=10:style=Bold" };
|
||||||
|
static const char dmenufont[] = "DejaVuSansM Nerd Font:size=10:style=Bold";
|
||||||
|
static const char col_black_alt[] = "#270e05";
|
||||||
|
static const char col_light_blue_alt[] = "#97aee4";
|
||||||
|
static const char col_white[] = "#fef9cd";
|
||||||
|
static const char col_white_alt[] = "#ffffff";
|
||||||
|
static const char *colors[][3] = {
|
||||||
|
/* fg bg border */
|
||||||
|
[SchemeNorm] = { col_white, col_black_alt, col_black_alt },
|
||||||
|
[SchemeSel] = { col_white, col_light_blue_alt, col_white_alt },
|
||||||
|
};
|
||||||
|
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
/* tagging */
|
||||||
|
static const char *tags[] = { "", "", "", "", "", "", "", "", "" };
|
||||||
|
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
/* layout(s) */
|
||||||
|
static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
|
||||||
|
/* ... */
|
||||||
|
static const int nstack = 0; /* number of clients in primary stack area */
|
||||||
|
static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
static const Layout layouts[] = {
|
||||||
|
/* symbol arrange function, { nmaster, nstack, layout, master axis, stack axis, secondary stack axis } */
|
||||||
|
{ "[]=", flextile, { -1, -1, -SPLIT_VERTICAL, TOP_TO_BOTTOM, TOP_TO_BOTTOM, 0, NULL } }, // default tile layout
|
||||||
|
{ "><>", NULL, {0} }, /* no layout function means floating behavior */
|
||||||
|
{ "[M]", flextile, { -1, -1, NO_SPLIT, MONOCLE, MONOCLE, 0, NULL } }, // monocle
|
||||||
|
{ "|||", flextile, { -1, -1, SPLIT_VERTICAL, LEFT_TO_RIGHT, TOP_TO_BOTTOM, 0, NULL } }, // columns (col) layout
|
||||||
|
{ ">M>", flextile, { -1, -1, FLOATING_MASTER, LEFT_TO_RIGHT, LEFT_TO_RIGHT, 0, NULL } }, // floating master
|
||||||
|
{ "[D]", flextile, { -1, -1, SPLIT_VERTICAL, TOP_TO_BOTTOM, MONOCLE, 0, NULL } }, // deck
|
||||||
|
{ "TTT", flextile, { -1, -1, SPLIT_HORIZONTAL, LEFT_TO_RIGHT, LEFT_TO_RIGHT, 0, NULL } }, // bstack
|
||||||
|
{ "===", flextile, { -1, -1, SPLIT_HORIZONTAL, LEFT_TO_RIGHT, TOP_TO_BOTTOM, 0, NULL } }, // bstackhoriz
|
||||||
|
{ "|M|", flextile, { -1, -1, SPLIT_HORIZONTAL, LEFT_TO_RIGHT, TOP_TO_BOTTOM, 0, monoclesymbols } }, // centeredmaster
|
||||||
|
{ ":::", flextile, { -1, -1, NO_SPLIT, GAPPLESSGRID, GAPPLESSGRID, 0, NULL } }, // gappless grid
|
||||||
|
{ "[\\]", flextile, { -1, -1, NO_SPLIT, DWINDLE, DWINDLE, 0, NULL } }, // fibonacci dwindle
|
||||||
|
{ "(@)", flextile, { -1, -1, NO_SPLIT, SPIRAL, SPIRAL, 0, NULL } }, // fibonacci spiral
|
||||||
|
{ "[T]", flextile, { -1, -1, SPLIT_VERTICAL, LEFT_TO_RIGHT, TATAMI, 0, NULL } }, // tatami mats
|
||||||
|
};
|
||||||
|
|
||||||
|
/* ... */
|
85
st/config.h
Normal file
85
st/config.h
Normal file
|
@ -0,0 +1,85 @@
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
static char *font = "DejaVuSansM Nerd Font:pixelsize=12:antialias=true:autohint=true";
|
||||||
|
static int borderpx = 20;
|
||||||
|
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
/*
|
||||||
|
* thickness of underline and bar cursors
|
||||||
|
*/
|
||||||
|
static unsigned int cursorthickness = 2;
|
||||||
|
|
||||||
|
/* ... */
|
||||||
|
|
||||||
|
/* Terminal colors (16 first used in escape sequence) */
|
||||||
|
static const char *colorname[] = {
|
||||||
|
/* 8 normal colors */
|
||||||
|
"#361f24",
|
||||||
|
"#832f01",
|
||||||
|
"#fb9756",
|
||||||
|
"#ffde6e",
|
||||||
|
"#6b789b",
|
||||||
|
"#7c6a8e",
|
||||||
|
"#94b5ea",
|
||||||
|
"#fef9cd",
|
||||||
|
|
||||||
|
/* 8 bright colors */
|
||||||
|
"#270e05",
|
||||||
|
"#6b290f",
|
||||||
|
"#bd4307",
|
||||||
|
"#ffba51",
|
||||||
|
"#5376ae",
|
||||||
|
"#654d86",
|
||||||
|
"#97aee4",
|
||||||
|
"#ffffff",
|
||||||
|
|
||||||
|
[255] = 0,
|
||||||
|
|
||||||
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
|
"#ffffff",
|
||||||
|
"#361f24",
|
||||||
|
"#fef9cd", /* default foreground colour */
|
||||||
|
"#361f24", /* default background colour */
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default colors (colorname index)
|
||||||
|
* foreground, background, cursor, reverse cursor
|
||||||
|
*/
|
||||||
|
unsigned int defaultfg = 258;
|
||||||
|
unsigned int defaultbg = 259;
|
||||||
|
unsigned int defaultcs = 256;
|
||||||
|
static unsigned int defaultrcs = 257;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default shape of cursor
|
||||||
|
* 2: Block ("█")
|
||||||
|
* 4: Underline ("_")
|
||||||
|
* 6: Bar ("|")
|
||||||
|
* 7: Snowman ("☃")
|
||||||
|
*/
|
||||||
|
static unsigned int cursorshape = 2;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default columns and rows numbers
|
||||||
|
*/
|
||||||
|
|
||||||
|
static unsigned int cols = 80;
|
||||||
|
static unsigned int rows = 24;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Default colour and shape of the mouse cursor
|
||||||
|
*/
|
||||||
|
static unsigned int mouseshape = XC_xterm;
|
||||||
|
static unsigned int mousefg = 7;
|
||||||
|
static unsigned int mousebg = 0;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Color used to display font attributes when fontconfig selected a font which
|
||||||
|
* doesn't match the ones requested.
|
||||||
|
*/
|
||||||
|
static unsigned int defaultattr = 11;
|
||||||
|
|
||||||
|
/* ... */
|
Loading…
Reference in a new issue