This commit is contained in:
memL0rz
2024-10-13 10:40:48 -01:00
parent 81cd769c8a
commit 3032855bad
2 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */ static const int topbar = 1; /* 0 means bottom bar */
static const char *fonts[] = { "monospace:size=10" }; static const char *fonts[] = { "monospace:size=10" };
static const char dmenufont[] = "monospace:size=10"; static const char dmenufont[] = "monospace:size=10";
static const char col_gray1[] = "#282828"; static const char col_gray1[] = "#101010";
static const char col_gray2[] = "#fbf1c7"; static const char col_gray2[] = "#fbf1c7";
static const char col_gray3[] = "#ffffff"; static const char col_gray3[] = "#ffffff";
static const char col_gray4[] = "#eeeeee"; static const char col_gray4[] = "#eeeeee";
@ -38,6 +38,7 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen win
#include <X11/XF86keysym.h> #include <X11/XF86keysym.h>
static const Layout layouts[] = { static const Layout layouts[] = {
{ "|M|", centeredmaster },
{ "[]=", tile }, /* first entry is default */ { "[]=", tile }, /* first entry is default */
{ "[M]", monocle }, { "[M]", monocle },
{ "[@]", spiral }, { "[@]", spiral },
@ -50,7 +51,6 @@ static const Layout layouts[] = {
{ "---", horizgrid }, { "---", horizgrid },
{ ":::", gaplessgrid }, { ":::", gaplessgrid },
{ "|M|", centeredmaster }, { "|M|", centeredmaster },
{ ">M>", centeredfloatingmaster },
{ "><>", NULL }, /* no layout function means floating behavior */ { "><>", NULL }, /* no layout function means floating behavior */
{ NULL, NULL }, { NULL, NULL },
}; };

View File

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