Add dwm colors

This commit is contained in:
cybvik 2022-07-03 02:08:43 +02:00
parent a1627ea374
commit ab96a63fea
3 changed files with 26 additions and 0 deletions

View File

@ -47,6 +47,8 @@
- [Termite](https://github.com/Roboron3042/Cyberpunk-Neon/tree/master/terminal#termite)
- [Tilix](https://github.com/Roboron3042/Cyberpunk-Neon/tree/master/terminal#tilix)
- [Other](https://github.com/Roboron3042/Cyberpunk-Neon/tree/master/terminal#other)
- [Window Manager](https://github.com/Roboron3042/Cyberpunk-Neon/tree/master/window-manager#window-manager)
- [dwm](https://github.com/Roboron3042/Cyberpunk-Neon/tree/master/window-manager#dwm)
- [License](#license)
## Description

7
window-manager/README.md Normal file
View File

@ -0,0 +1,7 @@
# Terminal Emulators
In this folder you will find colorschemes for window managers.
## dwm
Replace the color settings in your config.h with the contents of dwm/config.def.h

View File

@ -0,0 +1,17 @@
/* Set colors for dwm */
static const char norm_fg[] = "#0abdc6";
static const char norm_bg[] = "#091833";
static const char norm_border[] = "#091833";
static const char sel_fg[] = "#ea00d9";
static const char sel_bg[] = "#091833";
static const char sel_border[] = "#ea00d9";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { norm_fg, norm_bg, norm_border },
[SchemeSel] = { sel_fg, sel_bg, sel_border },
};
/* Adjust dmenu command accordingly */
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn",dmenufont, "-nb", norm_bg, "-nf", norm_fg, "-sb", sel_bg, "-sf", sel_fg, NULL };