commit f75b1715f8b64d5740da62c23e2c54fecf81945a
parent 12628dd9db275290c32e777d22011bce5f9abbce
Author: ssnf <ssnf@ssnf.xyz>
Date: Tue, 5 Mar 2024 16:20:18 +0000
OpenBASED baby
Diffstat:
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/config.h b/config.h
@@ -9,7 +9,7 @@ static const int showbar = 0; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
static const int vertpad = 4; /* vertical padding of bar */
static const int sidepad = 4; /* horizontal padding of bar */
-static const char* fonts[] = { "hack:size=12" };
+static const char* fonts[] = { "monospace:size=10" };
static const char col_fg[] = "#454138";
static const char col_bg[] = "#d1cdb7";
static const char* colors[][3] = {
@@ -87,9 +87,9 @@ static const char* pscrn[] = { "pscrn", NULL };
static const char* pscrns[] = { "pscrn", "-s", NULL };
static const char* pscrnf[] = { "pscrnf", NULL };
static const char* pscrnfs[] = { "pscrnf", "-s", NULL };
-static const char* spkrd[] = { "pamixer", "-d", "5", NULL };
-static const char* spkri[] = { "pamixer", "-i", "5", NULL };
-static const char* spkrt[] = { "pamixer", "-t", NULL };
+/* static const char* spkrd[] = { "pamixer", "-d", "5", NULL }; */
+/* static const char* spkri[] = { "pamixer", "-i", "5", NULL }; */
+/* static const char* spkrt[] = { "pamixer", "-t", NULL }; */
static const char* status[] = { "status", NULL };
static const char* stopdwm[] = { "stopdwm", NULL };
static const char* termcmd[] = { "st", NULL };
@@ -120,12 +120,12 @@ static Key keys[] = {
{ SHIFT, XK_Print, spawn, {.v = pscrns} },
{ MOD, XK_Print, spawn, {.v = pscrnf} },
{ MOD|SHIFT, XK_Print, spawn, {.v = pscrnfs} },
- { 0, XF86XK_AudioMute, spawn, {.v = spkrt} },
+/* { 0, XF86XK_AudioMute, spawn, {.v = spkrt} },
{ MOD, XK_KP_Multiply, spawn, {.v = spkrt} },
{ 0, XF86XK_AudioRaiseVolume, spawn, {.v = spkri} },
{ MOD, XK_KP_Add, spawn, {.v = spkri} },
{ 0, XF86XK_AudioLowerVolume, spawn, {.v = spkrd} },
- { MOD, XK_KP_Subtract, spawn, {.v = spkrd} },
+ { MOD, XK_KP_Subtract, spawn, {.v = spkrd} }, */
{ MOD, XK_u, spawn, {.v = status} },
{ MOD, XK_Return, spawn, {.v = termcmd } },
{ MOD, XK_t, spawn, {.v = tremc } },
diff --git a/config.mk b/config.mk
@@ -4,7 +4,7 @@ VERSION = 6.4
# Customize below to fit your system
# paths
-PREFIX = ~/.local
+PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man
X11INC = /usr/X11R6/include
@@ -19,8 +19,8 @@ FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
# OpenBSD (uncomment)
-#FREETYPEINC = ${X11INC}/freetype2
-#MANPREFIX = ${PREFIX}/man
+FREETYPEINC = ${X11INC}/freetype2
+MANPREFIX = ${PREFIX}/man
# includes and libs
INCS = -I${X11INC} -I${FREETYPEINC}