Compare commits

..

2 Commits

Author SHA1 Message Date
6eff2c0b4d
feat(st): alacritty default colors 2024-04-29 14:43:36 +02:00
b2b2f5886d
fix(dwm): st default term 2024-04-29 14:40:44 +02:00
5 changed files with 21 additions and 21 deletions

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

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

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

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[] = { "alacritty", NULL }; static const char *termcmd[] = { "st", 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 */
"black", "#181818",
"red3", "#ac4242",
"green3", "#90a959",
"yellow3", "#f4bf75",
"blue2", "#6a9fb5",
"magenta3", "#aa759f",
"cyan3", "#75b5aa",
"gray90", "#d8d8d8",
/* 8 bright colors */ /* 8 bright colors */
"gray50", "#6b6b6b",
"red", "#c55555",
"green", "#aac474",
"yellow", "#feca88",
"#5c5cff", "#82b8c8",
"magenta", "#c28cb8",
"cyan", "#93d3c3",
"white", "#f8f8f8",
[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",
"gray90", /* default foreground colour */ "#d8d8d8", /* default foreground colour */
"#101010", /* default background colour */ "#101010", /* default background colour */
}; };