Compare commits

..

No commits in common. "6eff2c0b4d3f58e8ecade800078264c6a4fda9cb" and "1d76b74e6d5f7825e9fc5c151797a3f3cf70de73" have entirely different histories.

5 changed files with 21 additions and 21 deletions

@ -1 +1 @@
Subproject commit 08e301982b9a057110ede7a735dd1b5285eb341f Subproject commit 5129a3693c482fcbc5ab99a7706ffc4360b995a0

@ -1 +1 @@
Subproject commit 35f94f0ef32d70e3664a703cefbe71bd1456d899 Subproject commit 7d1698f3d88b448e0639974248cc17f49b7b8acf

@ -1 +1 @@
Subproject commit 160e5d52c841dc9261c0b2dc6f253bddbcf3d766 Subproject commit 19c6b0c4c9b35962e45b782e2b85a3214d2ac4d5

View File

@ -57,7 +57,7 @@ static const Layout layouts[] = {
/* commands */ /* commands */
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
static const char *dmenucmd[] = { "dmenu_run", "-i", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL }; static const char *dmenucmd[] = { "dmenu_run", "-i", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
static const char *termcmd[] = { "st", NULL }; static const char *termcmd[] = { "alacritty", NULL };
static const char *lockcmd[] = { "lock", NULL }; static const char *lockcmd[] = { "lock", NULL };
static const char *wwwcmd[] = { "org.mozilla.firefox", NULL }; static const char *wwwcmd[] = { "org.mozilla.firefox", NULL };
static const char *pwwwcmd[] = { "org.mozilla.firefox", "--private-window", NULL }; static const char *pwwwcmd[] = { "org.mozilla.firefox", "--private-window", NULL };

View File

@ -99,31 +99,31 @@ float alpha = .9;
/* Terminal colors (16 first used in escape sequence) */ /* Terminal colors (16 first used in escape sequence) */
static const char *colorname[] = { static const char *colorname[] = {
/* 8 normal colors */ /* 8 normal colors */
"#181818", "black",
"#ac4242", "red3",
"#90a959", "green3",
"#f4bf75", "yellow3",
"#6a9fb5", "blue2",
"#aa759f", "magenta3",
"#75b5aa", "cyan3",
"#d8d8d8", "gray90",
/* 8 bright colors */ /* 8 bright colors */
"#6b6b6b", "gray50",
"#c55555", "red",
"#aac474", "green",
"#feca88", "yellow",
"#82b8c8", "#5c5cff",
"#c28cb8", "magenta",
"#93d3c3", "cyan",
"#f8f8f8", "white",
[255] = 0, [255] = 0,
/* more colors can be added after 255 to use with DefaultXX */ /* more colors can be added after 255 to use with DefaultXX */
"#cccccc", "#cccccc",
"#555555", "#555555",
"#d8d8d8", /* default foreground colour */ "gray90", /* default foreground colour */
"#101010", /* default background colour */ "#101010", /* default background colour */
}; };