Removed automatic colouring from pywal & Changed the font to Hack

master
ronaldr1985 6 years ago
parent f2c11590f8
commit 9c34768edd

@ -1,12 +1,24 @@
Ronald's build of suckless' dmenu
dmenu - dynamic menu
====================
dmenu is an efficient dynamic menu for X.
Requirements
------------
In order to build dmenu you need the Xlib header files.
Installation
------------
Edit config.mk to match your local setup (dmenu is installed into
the /usr/local namespace by default).
Afterwards enter the following command to build and install dmenu
(if necessary as root):
*make clean install* or *sudo make clean install*
make clean install
Customisations
--------------
My customisations constist of making dmenu use pywal colors, and changing the font.
Nothing thats really special. Don't both sharing.
Running dmenu
-------------
See the man page for details.

@ -4,14 +4,14 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"Inconsolata:size=14"
"monospace:size=10"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#fbf1c7", "#1d2021" },
[SchemeSel] = { "#fbf1c7", "#fb4934" },
[SchemeOut] = { "#fbf1c7", "#8ec07c" },
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;

@ -4,12 +4,16 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"xos4 Terminus:size=13"
"Hack:size=10"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
#include "/home/regan/.cache/wal/colors-wal-dmenu.h"
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#9ed4bf", "#130f0c" },
[SchemeSel] = { "#9ed4bf", "#A83626" },
[SchemeOut] = { "#9ed4bf", "#B37D83" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;

BIN
dmenu

Binary file not shown.

Binary file not shown.

BIN
drw.o

Binary file not shown.

BIN
stest

Binary file not shown.

Binary file not shown.

BIN
util.o

Binary file not shown.
Loading…
Cancel
Save