Browse Source

rinri: initial commit

master
RinRi 3 years ago
parent
commit
00c7145dda
8 changed files with 27 additions and 2 deletions
  1. +3
    -2
      config.def.h
  2. +24
    -0
      config.h
  3. BIN
      dmenu
  4. BIN
      dmenu.o
  5. BIN
      drw.o
  6. BIN
      stest
  7. BIN
      stest.o
  8. BIN
      util.o

+ 3
- 2
config.def.h View File

@@ -4,13 +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[] = {
"monospace:size=10"
"monospace:size=13",
"fontawesome:size=15"
};
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" },
[SchemeSel] = { "#eeeeee", "#41008c" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */


+ 24
- 0
config.h View File

@@ -0,0 +1,24 @@
/* 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[] = {
"monospace:size=13",
"fontawesome:size=15"
};
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", "#41008c" },
[SchemeOut] = { "#000000", "#00ffff" },
};
/* -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 View File


BIN
dmenu.o View File


BIN
drw.o View File


BIN
stest View File


BIN
stest.o View File


BIN
util.o View File


Loading…
Cancel
Save