diff options
| author | ozpv <39195175+ozpv@users.noreply.github.com> | 2026-05-21 03:53:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-05-21 03:53:50 +0000 |
| commit | 4c0c205e4710856de0e2ed16c3d3f02e46d8a8fe (patch) | |
| tree | 4f76eb413476a2eaaa08cfb48560729268e7df82 | |
| parent | 95f2d6d75aeec4ab10e6028b2b1788201a741509 (diff) | |
update config
| -rw-r--r-- | config.def.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/config.def.h b/config.def.h index 2f9932f..bdd547b 100644 --- a/config.def.h +++ b/config.def.h @@ -4,22 +4,22 @@ /* appearance */ static const unsigned int borderpx = 2; /* border pixel of windows */ -static const unsigned int gappx = 12; /* gaps between windows */ +static const unsigned int gappx = 12; /* gaps between 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 int user_bh = 22; /* user bar height; set to 0 if you want to use dwm's... */ +static const int user_bh = 12; /* 2 is the default spacing around the bar's font */ static const char *fonts[] = { "JetBrainsMono Nerd Font:style=Regular:size=10" }; static const char dmenufont[] = "JetBrainsMono Nerd Font:style=Regular:size=10"; -static const char col_gray1[] = "#1e1e2e"; -static const char col_gray2[] = "#6c7086"; -static const char col_gray3[] = "#cdd6f4"; -static const char col_gray4[] = "#cdd6f4"; -static const char col_cyan[] = "#1e1e2e"; +static const char col_gray1[] = "#282828"; +static const char col_gray2[] = "#928374"; +static const char col_gray3[] = "#ebdbb2"; +static const char col_gray4[] = "#ebdbb2"; +static const char col_cyan[] = "#282828"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, col_gray1, col_gray2 }, - [SchemeSel] = { col_gray4, col_cyan, col_gray3 }, + [SchemeNorm] = { col_gray3, col_gray1, col_gray1 }, + [SchemeSel] = { col_gray4, col_cyan, col_gray2 }, }; /* tagging */ @@ -39,6 +39,7 @@ static const float mfact = 0.55; /* factor of master area size [0.05..0.95] static const int nmaster = 1; /* number of clients in master area */ static const int resizehints = 1; /* 1 means respect size hints in tiled resizals */ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen window */ +static const int refreshrate = 120; /* refresh rate (per second) for client move/resize */ static const Layout layouts[] = { /* symbol arrange function */ @@ -67,7 +68,7 @@ static Key keys[] = { { MODKEY, XK_space, spawn, {.v = dmenucmd } }, { MODKEY|ShiftMask, XK_space, spawn, SHCMD("networkmanager_dmenu") }, { MODKEY, XK_a, spawn, SHCMD("st") }, - { MODKEY, XK_f, spawn, SHCMD("firefox") }, + { MODKEY, XK_f, spawn, SHCMD("librewolf") }, { MODKEY, XK_k, spawn, SHCMD("pactl set-sink-volume 0 +10%") }, { MODKEY, XK_j, spawn, SHCMD("pactl set-sink-volume 0 -10%") }, |
