From 681a8ad3d6829dc102984076c0c8229886e9482a Mon Sep 17 00:00:00 2001
From: Jens Nolte <jens@nightmarestudio.de>
Date: Wed, 4 Mar 2020 02:32:39 +0100
Subject: [PATCH] Change 'qbar server connect' to 'qbar server send'

---
 src/QBar/Cli.hs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/QBar/Cli.hs b/src/QBar/Cli.hs
index e538907..c175a0a 100644
--- a/src/QBar/Cli.hs
+++ b/src/QBar/Cli.hs
@@ -47,7 +47,7 @@ serverCommandParser :: Parser (MainOptions -> IO ())
 serverCommandParser = hsubparser (
     command "swaybar" (info (runBarServer <$> barConfigurationParser) (progDesc "Start a new server for swaybar. Should be called by swaybar.")) <>
     command "i3bar" (info (runBarServer <$> barConfigurationParser) (progDesc "Start a new server for i3bar. Should be called by i3bar.")) <>
-    command "connect" (info (sendBlockStream <$> barConfigurationParser) (progDesc "Run blocks on this process but send them to another qbar server."))
+    command "send" (info (sendBlockStream <$> barConfigurationParser) (progDesc "Run blocks on this process but send them to another qbar server."))
   )
 
 themeCommandParser :: Parser (MainOptions -> IO ())
-- 
GitLab