mirror of
https://github.com/pikami/dwm.git
synced 2024-12-04 17:45:44 +00:00
Update color scheme, font and gap
This commit is contained in:
parent
93d5de8248
commit
17a652ebec
14
config.h
14
config.h
@ -2,7 +2,7 @@
|
||||
|
||||
/* appearance */
|
||||
static const unsigned int borderpx = 2; /* border pixel of windows */
|
||||
static const unsigned int gappx = 4; /* gaps between windows */
|
||||
static const unsigned int gappx = 2; /* gaps between windows */
|
||||
static const unsigned int snap = 32; /* snap pixel */
|
||||
static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
|
||||
static const unsigned int systrayspacing = 2; /* systray spacing */
|
||||
@ -10,13 +10,13 @@ static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display
|
||||
static const int showsystray = 1; /* 0 means no systray */
|
||||
static const int showbar = 1; /* 0 means no bar */
|
||||
static const int topbar = 1; /* 0 means bottom bar */
|
||||
static const char *fonts[] = { "Noto Sans:size=9", "Noto Color Emoji:size=9", "fontawesome:size=9" };
|
||||
static const char dmenufont[] = "Noto Sans:size=9";
|
||||
static const char col_gray1[] = "#222222";
|
||||
static const char *fonts[] = { "Consolas:size=12" };
|
||||
static const char dmenufont[] = "Consolas:size=12";
|
||||
static const char col_gray1[] = "#2C2C2C";
|
||||
static const char col_gray2[] = "#444444";
|
||||
static const char col_gray3[] = "#bbbbbb";
|
||||
static const char col_gray4[] = "#eeeeee";
|
||||
static const char col_cyan[] = "#005577";
|
||||
static const char col_gray3[] = "#DCDCDC";
|
||||
static const char col_gray4[] = "#DCDCDC";
|
||||
static const char col_cyan[] = "#60B48A";
|
||||
static const char *colors[][3] = {
|
||||
/* fg bg border */
|
||||
[SchemeNorm] = { col_gray3, col_gray1, col_gray2 },
|
||||
|
Loading…
Reference in New Issue
Block a user