config changes
This commit is contained in:
parent
499d9e523a
commit
29c3884c91
1 changed files with 8 additions and 8 deletions
16
config.h
16
config.h
|
@ -3,26 +3,26 @@
|
|||
/* Constants */
|
||||
#define TERMINAL "st"
|
||||
#define TERMCLASS "St"
|
||||
#define BROWSER "librewolf"
|
||||
#define BROWSER "firefox"
|
||||
|
||||
/* appearance */
|
||||
static unsigned int borderpx = 3; /* border pixel of windows */
|
||||
static unsigned int snap = 32; /* snap pixel */
|
||||
static unsigned int gappih = 20; /* horiz inner gap between windows */
|
||||
static unsigned int gappiv = 10; /* vert inner gap between windows */
|
||||
static unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
|
||||
static unsigned int gappov = 30; /* vert outer gap between windows and screen edge */
|
||||
static unsigned int gappih = 6; /* horiz inner gap between windows */
|
||||
static unsigned int gappiv = 6; /* vert inner gap between windows */
|
||||
static unsigned int gappoh = 6; /* horiz outer gap between windows and screen edge */
|
||||
static unsigned int gappov = 6; /* vert outer gap between windows and screen edge */
|
||||
static int swallowfloating = 0; /* 1 means swallow floating windows by default */
|
||||
static int smartgaps = 0; /* 1 means no outer gap when there is only one window */
|
||||
static int showbar = 1; /* 0 means no bar */
|
||||
static int topbar = 1; /* 0 means bottom bar */
|
||||
static char *fonts[] = { "monospace:size=10", "NotoColorEmoji:pixelsize=10:antialias=true:autohint=true" };
|
||||
static char normbgcolor[] = "#222222";
|
||||
static char normbgcolor[] = "#4d0066";
|
||||
static char normbordercolor[] = "#444444";
|
||||
static char normfgcolor[] = "#bbbbbb";
|
||||
static char selfgcolor[] = "#eeeeee";
|
||||
static char selbordercolor[] = "#770000";
|
||||
static char selbgcolor[] = "#005577";
|
||||
static char selbordercolor[] = "#eeeeee";
|
||||
static char selbgcolor[] = "#730099";
|
||||
static char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { normfgcolor, normbgcolor, normbordercolor },
|
||||
|
|
Loading…
Reference in a new issue