From 1b1ab5ef88164d868d21fb46b7ed37e127e452f4 Mon Sep 17 00:00:00 2001 From: enkore Date: Wed, 17 Jun 2015 14:04:32 +0200 Subject: [PATCH] setting_util.py: tell the world what you are around for --- setting_util.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setting_util.py b/setting_util.py index ab9b1c0..bc1442b 100755 --- a/setting_util.py +++ b/setting_util.py @@ -64,6 +64,11 @@ choices = [k for k in credential_modules.keys()] for idx, module in enumerate(choices, start=1): print("%s - %s" % (idx, module)) +print("""setting_util.py - part of i3pystatus +This allows you to edit keyring-protected settings of +i3pystatus modules, which are stored globally (independent +of your i3pystatus configuration) in your keyring. +""") index = get_int_in_range("Choose module:\n> ", range(1, len(choices) + 1)) module_name = choices[index - 1] module = credential_modules[module_name]