made the entries clickable

This commit is contained in:
Tobias Schmidl 2021-04-27 15:08:22 +02:00
parent 074cfbf846
commit 935d2e534d

View file

@ -101,7 +101,7 @@ if __name__ == "__main__":
for current_host, current_response in responses.items():
if isinstance(current_response, float):
print(current_host + ": " + str(round(current_response, 2)) + " | color=" +
CURRENT_THEME.colorize(current_response))
CURRENT_THEME.colorize(current_response) + " | bash=\"httping -K " + current_host + "\"")
else:
print(current_host + ": ☠ | color=" + CURRENT_THEME.selected_colors[0])
print("---")