Compare commits

...

2 Commits

Author SHA1 Message Date
b7e8c7cb5f Add .drone.yml 2023-11-21 20:28:31 +01:00
6ccc141b06 vertical menu 2023-10-21 16:37:49 +02:00
6 changed files with 12 additions and 2 deletions

10
.drone.yml Normal file
View File

@@ -0,0 +1,10 @@
---
kind: pipeline
name: default
steps:
- name: build
image: gcc
commands:
- rm config.h
- make clean

View File

@@ -15,7 +15,7 @@ static const char *colors[SchemeLast][2] = {
[SchemeOut] = { "#000000", "#00ffff" }, [SchemeOut] = { "#000000", "#00ffff" },
}; };
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0; static unsigned int lines = 10;
/* /*
* Characters not considered part of a word while deleting words * Characters not considered part of a word while deleting words

View File

@@ -15,7 +15,7 @@ static const char *colors[SchemeLast][2] = {
[SchemeOut] = { "#000000", "#00ffff" }, [SchemeOut] = { "#000000", "#00ffff" },
}; };
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */ /* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0; static unsigned int lines = 10;
/* /*
* Characters not considered part of a word while deleting words * Characters not considered part of a word while deleting words

BIN
dmenu

Binary file not shown.

BIN
dmenu.o

Binary file not shown.

BIN
stest

Binary file not shown.