firt commit

This commit is contained in:
keleki 2021-09-17 00:57:23 -03:00
parent 1a13d0465d
commit 5814ab0991
8 changed files with 27 additions and 6 deletions

View File

@ -7,12 +7,14 @@ static const char *fonts[] = {
"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] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeOut] = { "#000000", "#00ffff" },
};
#include "/home/pavuz/.cache/wal/colors-wal-dmenu.h"
//static const char *colors[SchemeLast][2] = {
// /* 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;

19
config.h Normal file
View File

@ -0,0 +1,19 @@
/* 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[] = {
"peep:style=Regular"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
#include "/home/pavuz/.cache/wal/colors-wal-dmenu.h"
/* -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[] = " ";

BIN
dmenu Executable file

Binary file not shown.

BIN
dmenu.o Normal file

Binary file not shown.

BIN
drw.o Normal file

Binary file not shown.

BIN
stest Executable file

Binary file not shown.

BIN
stest.o Normal file

Binary file not shown.

BIN
util.o Normal file

Binary file not shown.