diff --git a/config.h b/config.h index b9ce2af..34e8a48 100644 --- a/config.h +++ b/config.h @@ -5,14 +5,15 @@ static const unsigned int borderpx = 1; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Terminus:size=12" }; -static const char col_green[] = "#00FF00"; -static const char col_lightgray[] = "#eeeeee"; -static const char col_black[] = "#000000"; +static const char *fonts[] = { "JetBrains Mono:size=10" }; +static const char foreground[] = "#F7D632"; +static const char col_lightgray[] = "#95A99F"; +static const char col_black[] = "#1A1A1A"; +static const char background[] = "#181818"; static const char *colors[][3] = { - /* fg bg border */ - [SchemeNorm] = { col_green, col_black, col_black }, - [SchemeSel] = { col_lightgray, col_black, col_green }, + /* fg bg border */ + [SchemeNorm] = { col_lightgray, background, col_black }, + [SchemeSel] = { foreground, background, col_lightgray }, }; /* tagging */ @@ -24,11 +25,8 @@ static const Rule rules[] = { * WM_NAME(STRING) = title */ /* class instance title tags mask isfloating monitor */ - { "Nextcloud", NULL, NULL, 1 << 8, 1, -1 }, - { "st", "floating", NULL, 0, 1, -1 }, { "Qemu-system-i386", NULL, NULL, 1 << 1, 0, -1 }, { "alacritty_floating", NULL, NULL, 0, 1, -1 }, - { "odin-term", NULL, NULL, 1 << 1, 1, -1 }, }; /* layout(s) */ @@ -58,7 +56,7 @@ static const Layout layouts[] = { static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */ static const char *dmenucmd[] = { "dmenu_run", NULL }; -static const char *termcmd[] = { "ghostty", NULL }; +static const char *termcmd[] = { "alacritty", NULL }; static const char *ftermcmd[] = { "alacritty", "--class", "alacritty_floating", NULL }; static const char *webcmd[] = { "firefox", NULL }; @@ -67,9 +65,9 @@ static const char *webcmd2[] = { "chromium", NULL }; static const char *privwebcmd2[] = { "chromium", "--incognito", NULL }; static const char *xcmd[] = { "pkill", "x", NULL }; static const char *mutecmd[] = { "pulsemixer", "--toggle-mute", NULL }; -static const char *volcmd[] = { "ghostty", "--command", "pulsemixer", NULL }; +static const char *volcmd[] = { "alacritty", "--command", "pulsemixer", NULL }; static const char *lockcmd[] = { "slock", NULL }; -static const char *filecmd[] = { "ghostty", "--command", "nnn", "-Rd", NULL }; +static const char *filecmd[] = { "alacritty", "--command", "nnn", "-Rd", NULL }; static const char *ffilecmd[] = { "alacritty", "--class", "alacritty_floating", "--command", "nnn", "-Rd", NULL }; static const char *musiccmd[] = { "alacritty", "--command", "musikcube", NULL }; static const char *ssacmd[] = { "ssall", NULL };