diff --git a/src/QBar/Cli.hs b/src/QBar/Cli.hs
index e538907b98aea6f62a84f8b203ac8870a6c76d3f..c175a0a1389d3c68514fefaa0b388550f19e6538 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 ())