summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xquicksearch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/quicksearch.c b/quicksearch.c
index 3d6b5a2..bd9b7d1 100755
--- a/quicksearch.c
+++ b/quicksearch.c
@@ -64,7 +64,7 @@ quicksearch(const Arg *arg)
names[names_len - 1] = '\0';
char dmenu_cmd[256];
- snprintf(dmenu_cmd, sizeof(dmenu_cmd), "echo '%s' | dmenu -l 10 -i -p 'Switch to client:'", names);
+ snprintf(dmenu_cmd, sizeof(dmenu_cmd), "echo '%s' | dmenu -l 10 -i -p 'Find client:'", names);
FILE *fp = popen(dmenu_cmd, "r");
if (!fp) {