Skip to content

Commit

Permalink
Fix #1407 (missing "-o screen" in "qtile-cmd" output)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramnes committed Aug 28, 2019
1 parent 2dfe180 commit f082c61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libqtile/scripts/qtile_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,8 @@ def run_function(client: InteractiveCommandClient, funcname: str, args: List[str

def print_base_objects() -> None:
"""Prints access objects of Client, use cmd for commands."""
actions = ["-o cmd", "-o window", "-o layout", "-o group", "-o bar"]
actions = ["-o cmd", "-o window", "-o layout", "-o group", "-o bar",
"-o screen"]
print("Specify an object on which to execute command")
print("\n".join(actions))

Expand Down

0 comments on commit f082c61

Please sign in to comment.