pywal compatible
parent
0993d65de1
commit
f6ab857b41
@ -0,0 +1,24 @@
|
||||
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
|
||||
|
||||
|
||||
Running dmenu
|
||||
-------------
|
||||
See the man page for details.
|
||||
@ -1,11 +0,0 @@
|
||||
# Ronald's dmenu
|
||||
|
||||
This is just my build of dmenu. Nothing special, don't bother starring ;-)
|
||||
|
||||
Only changes are minor config ones: bigger font and different colors.
|
||||
|
||||
This is very similar to Luke Smith's Config, but with a few minor changes, a different font and different size.
|
||||
|
||||
## Installation
|
||||
|
||||
After making any config changes that you want, but `make`, `sudo make install` it.
|
||||
@ -0,0 +1,23 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
/* Default settings; can be overriden by command line. */
|
||||
|
||||
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"
|
||||
};
|
||||
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" },
|
||||
};
|
||||
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
||||
static unsigned int lines = 0;
|
||||
|
||||
/*
|
||||
* Characters not considered part of a word while deleting words
|
||||
* for example: " /?\"&[]"
|
||||
*/
|
||||
static const char worddelimiters[] = " ";
|
||||
Loading…
Reference in New Issue