diff options
author | fadhil riyanto <me@fadev.org> | 2024-10-09 20:18:58 +0700 |
---|---|---|
committer | fadhil riyanto <me@fadev.org> | 2024-10-09 20:18:58 +0700 |
commit | 61301eb15536a95b56d609f72d77037efbe4c8fa (patch) | |
tree | 4cdfcc07d7940155aeaa2361961ab0f573d12184 | |
parent | 9e4e5316dcc760859e7fcdab9d152115a1b8d4f8 (diff) |
Signed-off-by: fadhil riyanto <me@fadev.org>
-rw-r--r-- | config.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -15,10 +15,10 @@ static const char col_cyan[] = "#005577"; static const char col_black[] = "#000000"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_black, col_gray2 }, - [SchemeSel] = { col_gray4, col_black, col_gray2 }, - // [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - // [SchemeSel] = { col_gray4, col_cyan, col_cyan }, + //[SchemeNorm] = { col_gray3, col_black, col_gray2 }, + //[SchemeSel] = { col_gray4, col_black, col_gray2 }, + [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, + [SchemeSel] = { col_gray4, col_cyan, col_cyan }, }; /* tagging */ @@ -62,7 +62,7 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *roficmd[] = { "rofi", "-show", "run", NULL }; static const char *dmenucmd[] = { "dmenu", NULL }; -static const char *termcmd[] = { "wezterm", NULL }; +static const char *termcmd[] = { "xfce4-terminal", NULL }; static const Key keys[] = { /* modifier key function argument */ |