diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-26 12:13:33 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-01-26 12:13:33 +0100 |
| commit | a149c42181675bcde0f2750dabfcf2bab15d158b (patch) | |
| tree | 6dd02e4361771867472c5fa23ead0afef0a79287 /config.def.h | |
| parent | 2de24e0448dcce78fabfe23c0a9a46090d23de7b (diff) | |
make gruvbox
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 44 |
1 files changed, 21 insertions, 23 deletions
diff --git a/config.def.h b/config.def.h index 6d2c87e..e70a22e 100644 --- a/config.def.h +++ b/config.def.h @@ -5,7 +5,7 @@ * * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ -static char *font = "Source Code Pro:pixelsize=14:antialias=true:autohint=true"; +static char *font = "SauceCodePro Nerd Font:pixelsize=14:antialias=true:autohint=true"; static int borderpx = 4; /* @@ -99,26 +99,26 @@ float alpha = 0.8; /* Terminal colors (16 first used in escape sequence) */ static const char *colorname[] = { /* 8 normal colors */ - - "#191919", - "#FD4D4D", - "#418353", - "#E8D063", - "#7698C4", - "#F386DE", - "#06989A", - "#D3D7CF", + + "#282828", + "#cc241d", + "#98971a", + "#d79921", + "#458588", + "#b16286", + "#689d6a", + "#a89984", /* 8 bright colors */ - "#555753", - "#EF2929", - "#8AE234", - "#FCE94F", - "#729FCF", - "#729FCF", - "#34E2E2", - "#EEEEEC", + "#928374", + "#fb4934", + "#b8bb26", + "#fabd2f", + "#83a598", + "#d3869b", + "#8ec97c", + "#ebdbb2", [255] = 0, @@ -127,8 +127,6 @@ static const char *colorname[] = { "#555555", }; - - /* * Default colors (colorname index) * foreground, background, cursor, reverse cursor @@ -180,8 +178,8 @@ static uint forcemousemod = ShiftMask; */ static MouseShortcut mshortcuts[] = { /* mask button function argument release */ - { ShiftMask, Button4, kscrollup, {.i = 1} }, - { ShiftMask, Button5, kscrolldown, {.i = 1} }, + { XK_ANY_MOD, Button4, kscrollup, {.i = 1} }, + { XK_ANY_MOD, Button5, kscrolldown, {.i = 1} }, { XK_ANY_MOD, Button2, selpaste, {.i = 0}, 1 }, { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} }, { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} }, @@ -191,7 +189,7 @@ static MouseShortcut mshortcuts[] = { /* Internal keyboard shortcuts. */ #define MODKEY Mod1Mask -#define TERMMOD (ControlMask|ShiftMask) +#define TERMMOD (Mod1Mask) static Shortcut shortcuts[] = { /* mask keysym function argument */ |