From ddfcd57c6ba44574047b48be3ec08f775782dbfe Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Mon, 17 Feb 2020 16:23:05 -0600 Subject: [PATCH] - Fixed setup installer --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index bad4f03..dff00de 100755 --- a/setup.py +++ b/setup.py @@ -27,13 +27,16 @@ check_xbind = symbols_gui_line = cmdline("which xbindkeys").strip() check_xdotool = symbols_gui_line = cmdline("which xdotool").strip() runpkg = 0 +run_pkg = "" if len(check_xbind) > 0 and len(check_xdotool) > 0: print("Xbindkeys, and xdotool requirement is installed.") if len(check_xbind) == 0: run_pkg = "xbindkeys" + runpkg = 1 if len(check_xdotool) == 0: run_pkg += " xdotool" + runpkg = 1 if runpkg != 0: requirements()