aboutsummaryrefslogtreecommitdiffstats
path: root/prompt_info
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2010-09-28 01:29:44 +0000
committerTom Feist <shabble@metavore.org>2010-09-28 01:29:44 +0000
commite7487fd2ba208f00f50942613da91038b0a2a432 (patch)
treeae3f9266a7a983a8fe836236f490ebb039a9b3e7 /prompt_info
parentMerge remote branch 'origin/dev' (diff)
downloadirssi-scripts-e7487fd2ba208f00f50942613da91038b0a2a432.tar.gz
irssi-scripts-e7487fd2ba208f00f50942613da91038b0a2a432.zip
added a bunch more documentation to prompt_info script.
Diffstat (limited to 'prompt_info')
-rw-r--r--prompt_info/prompt_info.pl26
1 files changed, 23 insertions, 3 deletions
diff --git a/prompt_info/prompt_info.pl b/prompt_info/prompt_info.pl
index 51e5c16..8ad63ba 100644
--- a/prompt_info/prompt_info.pl
+++ b/prompt_info/prompt_info.pl
@@ -9,10 +9,30 @@
#
# prompt = "[$*$prompt_additional] "
#
-# Then add this script to your autorun directory (~/.irssi/scripts/autorun/)
+# Then place this script to your ~/.irssi/scripts directory (~/.irssi/scripts/)
+# and symlink it to the ~/.irssi/scripts/autorun directory (which may need to
+# be created first)
#
-# You can modify your prompt content by using the '/set_prompt <string>' command,
-# or from scripts by Irssi:signal_emit('change prompt', $string);
+# You can also load it manually once the theme has been edited via
+#
+# /script load prompt_info.pl
+#
+# You will also need to reload your theme with the following command:
+#
+# /script exec Irssi::themes_reload()
+#
+# Once loaded, you can modify your prompt content by using the following command:
+#
+# /set_prompt <string>
+#
+# You can also use it from other scripts by issuing a signal as follows:
+#
+# Irssi:signal_emit('change prompt',
+#
+# report bugs / feature requests to http://github.com/shabble/irssi-scripts/issues
+#
+# NOTE: it does not appear to be possible to use colours in your prompt at present.
+# This is unlikely to change without source-code changes to Irssi itself.
use strict;
use warnings;