Added dmenu support in makefile

This commit is contained in:
Bruce Hill 2019-07-15 22:25:36 -07:00
parent 5927e68bb7
commit a3e90c07a4

View File

@ -31,6 +31,9 @@ ifneq (, $(PICKER))
ifeq ($(shell which $(PICKER)),$(shell which pick 2>/dev/null || echo '<none>'))
PICKER_FLAG=-D'PICK(prompt, initial)="pick -q \"" initial "\""'
endif
ifeq ($(shell which $(PICKER)),$(shell which dmenu 2>/dev/null || echo '<none>'))
PICKER_FLAG=-D'PICK(prompt, initial)="dmenu -p \"" prompt "\""'
endif
endif
CFLAGS += $(PICKER_FLAG)