From 59473165dc7c30be1e987dca53dde6850e81af1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0sa=20Mert=20G=C3=BCrb=C3=BCz?= Date: Mon, 22 Jul 2019 11:34:33 +0300 Subject: [PATCH] fix syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f31db92..a742eaf 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Patterns may also contain capture groups. You can use these capture groups in `# ``` scheme (assoc #:pattern "([0-9]+) - (.+)\.mp3" - #:program 'notify-send 'Playing track number %1' 'Track name: %2'; mpv %f") + #:program "notify-send 'Playing track number %1' 'Track name: %2'; mpv %f") ;; Suppose you called `jaro "02 - From Scythe to Sceptre.mp3"`, ;; It'll send a notification saying "Playing track number 2, Track name: From Scythe to Sceptre" then open it using mpv. ```