summaryrefslogtreecommitdiff
path: root/quicksearch.c
diff options
context:
space:
mode:
authorProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-08-09 12:11:28 +0100
committerProsperousPotato <ProsperousPotato@users.noreply.github.com>2025-08-09 12:11:28 +0100
commit2f5ab0dbd1802b9fd57ff45fc43529b6b1466a89 (patch)
treec6882f1b013067c4d16f748291a9f88166671be5 /quicksearch.c
parentd334b4b0a72efe2ab33b14e0f7c1f649eeaf3033 (diff)
edit dmenu prompt text
Diffstat (limited to 'quicksearch.c')
-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) {