diff --git a/alfred-workflow/exec.py b/alfred-workflow/exec.py index 0c286e0..8673dc6 100644 --- a/alfred-workflow/exec.py +++ b/alfred-workflow/exec.py @@ -52,10 +52,12 @@ def main(wf): wf.add_item(title=result['password'], subtitle="Press Cmd+C to copy", - arg=result['password']) + arg=result['password'], + valid=True) wf.add_item(title="Copy hashed versions", subtitle="Press Cmd+C to copy", - arg="\n".join(hashed)) + arg="\n".join(hashed), + valid=True) wf.send_feedback() return 0