From 445f8c71c50ed9cdd72299b2ddf696b7baeb1b03 Mon Sep 17 00:00:00 2001 From: ozwaldorf Date: Wed, 1 Feb 2023 05:01:56 -0500 Subject: [PATCH] fix(hyprctl): allow dispatcher to have no args (#1464) * fix(hyprctl): allow dispatch to have no args * chore: add .idea/ to gitignore --- .gitignore | 1 + hyprctl/main.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 246557ae..95a1b6f0 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ _deps build/ result* /.vscode/ +/.idea/ .envrc .cache diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp index fd2a5b08..81343526 100644 --- a/hyprctl/main.cpp +++ b/hyprctl/main.cpp @@ -170,7 +170,7 @@ void requestHyprpaper(std::string arg) { int dispatchRequest(int argc, char** argv) { - if (argc < 4) { + if (argc < 3) { std::cout << "Usage: hyprctl dispatch \n\ Execute a hyprland keybind dispatcher with the given argument"; return 1;