This commit is contained in:
meml0rz
2024-11-25 03:38:00 +01:00
parent f2039e612b
commit 6bc899e6bc
2 changed files with 16 additions and 16 deletions

View File

@ -1,22 +1,22 @@
static const unsigned int borderpx = 3; /* border pixel of windows */
static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const unsigned int gappih = 20; /* horiz inner gap between windows */
static const unsigned int gappiv = 20; /* vert inner gap between windows */
static const unsigned int gappoh = 20; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 20; /* vert outer gap between windows and screen edge */
static const unsigned int gappih = 10; /* horiz inner gap between windows */
static const unsigned int gappiv = 10; /* vert inner gap between windows */
static const unsigned int gappoh = 10; /* horiz outer gap between windows and screen edge */
static const unsigned int gappov = 10; /* vert outer gap between windows and screen edge */
static int smartgaps = 0; /* 1 means no outer gap when there is only one window */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#1d2021";
static const char col_gray2[] = "#fbf1c7";
static const char *fonts[] = { "TerminessNerdFont:size=10" };
static const char dmenufont[] = "TerminessNerdFont:size=10";
static const char col_gray1[] = "#010101";
static const char col_gray2[] = "#cc241d";
static const char col_gray3[] = "#ffffff";
static const char col_gray4[] = "#eeeeee";
static const char col_cyan[] = "#282828";
static const char col_cyan[] = "#010101";
static const char *colors[][3] = {
/* fg bg border */
[SchemeNorm] = { col_gray3, col_gray1, col_cyan },
[SchemeNorm] = { col_gray3, col_gray1, col_gray1 },
[SchemeSel] = { col_gray4, col_cyan, col_gray2 },
};
@ -38,7 +38,7 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win
#include <X11/XF86keysym.h>
static const Layout layouts[] = {
{ "|M|", centeredmaster },
{ "|M|", centeredmaster },
{ "[]=", tile }, /* first entry is default */
{ "[M]", monocle },
{ "[@]", spiral },
@ -80,7 +80,7 @@ static const char *mutevol[] = { "/usr/bin/wpctl", "set-mute", "@DEFAULT_
static const Key keys[] = {
/* modifier key function argument */
{ MODKEY, XK_space, spawn, {.v = dmenucmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_b, togglebar, {0} },
{ MODKEY, XK_Right, focusstack, {.i = +1 } },
{ MODKEY, XK_Left, focusstack, {.i = -1 } },
@ -89,7 +89,7 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_Left, setmfact, {.f = -0.05} },
{ MODKEY|ShiftMask, XK_Right, setmfact, {.f = +0.05} },
{ MODKEY, XK_Tab, view, {0} },
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY, XK_q, killclient, {0} },
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} },
{ MODKEY, XK_0, view, {.ui = ~0 } },
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
@ -108,7 +108,7 @@ static const Key keys[] = {
TAGKEYS( XK_9, 8)
// Media Keys //
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol } },
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = downvol } },
{ 0, XF86XK_AudioMute, spawn, {.v = mutevol } },
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = upvol } },

View File

@ -4,7 +4,7 @@ VERSION = 6.5
# Customize below to fit your system
# paths
PREFIX = /usr
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = ${PREFIX}/include