|
This commit is contained in:
parent
16bf21ec36
commit
ea3b0cbffe
@ -14,7 +14,7 @@ static const char *fonts[] = {
|
||||
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
||||
static const char *colors[SchemeLast][2] = {
|
||||
/* fg bg */
|
||||
[SchemeNorm] = { "#dddddd", "#222222" },
|
||||
[SchemeNorm] = { "#dddddd", "#111111" },
|
||||
[SchemeSel] = { "#ffffff", "#ff0000" },
|
||||
[SchemeOut] = { "#000000", "#bc3d2f" },
|
||||
[SchemeCaret] = { "#fe5e5e", "#222222" },
|
||||
@ -23,7 +23,7 @@ static const char *colors[SchemeLast][2] = {
|
||||
|
||||
/* -l and -g options; controls number of lines and columns in grid if > 0 */
|
||||
static unsigned int lines = 9;
|
||||
static unsigned int columns = 4;
|
||||
static unsigned int columns = 2;
|
||||
|
||||
static const unsigned int alphas[SchemeLast][2] = {
|
||||
[SchemeNorm] = { OPAQUE, alpha },
|
||||
|
@ -6,7 +6,7 @@ if [ ! -f "$FILE" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
sed 's/|/'$'\t''/' "$FILE" | dmenu | {
|
||||
sed 's/|/'$'\t''/' "$FILE" | dmenu "$@" | {
|
||||
IFS=$'\t' read -r col1 col2
|
||||
[ -z "$col2" ] && exit 0
|
||||
eval "$col2" 2>/dev/null || :
|
||||
|
Loading…
Reference in New Issue
Block a user