Skip to content

Commit

Permalink
[kill] Use the entire commandline as id
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelSchneid3r committed Dec 15, 2018
1 parent dd37118 commit 29c0e2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kill.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def handleQuery(query):
proc_cmdline = open(os.path.join(dir_entry.path, 'cmdline'), 'r').read().strip().replace("\0", " ")
results.append(
Item(
id="kill_%s" % proc_command,
id="kill_%s" % proc_cmdline,
icon=iconPath,
text=proc_command.replace(query.string, "<u>%s</u>" % query.string),
subtext=proc_cmdline,
Expand Down

0 comments on commit 29c0e2f

Please sign in to comment.