From: Ailin Nemui Date: Sun, 31 Jul 2022 11:33:12 +0000 (+0200) Subject: filter search commands X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=c1786530344c7a516559d1c3cf92270246263822;p=irssi-scripts.irssi.org.git filter search commands --- diff --git a/index.html b/index.html index 4c4ceec..1a1cec0 100644 --- a/index.html +++ b/index.html @@ -10,69 +10,68 @@ layout: default
-
- - -

Instructions for using scripts with scriptassist.pl

-
-
How do I install scripts?
-
In Irssi, do /run scriptassist (only once per session), then - /script install scriptname . +
+ + +

Instructions for using scripts with scriptassist.pl

+
+
How do I install scripts?
+
In Irssi, do /run scriptassist (only once per session), then + /script install scriptname .
-
How do I rerun scripts?
-
Just do /script load scriptname .
+
How do I rerun scripts?
+
Just do /script load scriptname .
-
How do I unload scripts?
-
Just do /script unload scriptname .
+
How do I unload scripts?
+
Just do /script unload scriptname .
-
How do I run scripts automatically at startup?
-
Just do /script autorun scriptname .
+
How do I run scripts automatically at startup?
+
Just do /script autorun scriptname .
-
Scriptassist does not work for me / I want to do it myself?
-
+
Scriptassist does not work for me / I want to do it myself?
+
-
How do I submit a script to this page?
-
See information on how to contribute here.
-
-

Manual instructions for using scripts

-
-
How do I run scripts?
-
Put them into ~/.irssi/scripts/ and in irssi do - /script load script.pl . There is a default alias for - /script load to /run in newer versions of - irssi.
+
How do I submit a script to this page?
+
See information on how to contribute here.
+
+

Manual instructions for using scripts

+
+
How do I run scripts?
+
Put them into ~/.irssi/scripts/ and in irssi do + /script load script.pl . There is a default alias for + /script load to /run in newer versions of + irssi.
-
How do I rerun scripts?
-
Just do /script load script.pl .
+
How do I rerun scripts?
+
Just do /script load script.pl .
-
How do I unload scripts?
-
Just do /script unload script.pl .
+
How do I unload scripts?
+
Just do /script unload script.pl .
-
How do I run scripts automatically at startup?
-
Put them into ~/.irssi/scripts/autorun/ directory. - Or better would be if you placed them in - ~/.irssi/scripts/ and created symlinks to autorun - directory (eg. cd ~/.irssi/scripts/autorun/ ; ln -s +
How do I run scripts automatically at startup?
+
Put them into ~/.irssi/scripts/autorun/ directory. + Or better would be if you placed them in + ~/.irssi/scripts/ and created symlinks to autorun + directory (eg. cd ~/.irssi/scripts/autorun/ ; ln -s ../script.pl .)
-
Is there an easy way of managing scripts?
Try - scriptassist.pl, it can update and manage your scripts - as well as install new ones and search the database. -
+
Is there an easy way of managing scripts?
Try + scriptassist.pl, it can update and manage your scripts + as well as install new ones and search the database. +
-
How do I submit a script to this page?
-
See information on how to contribute here.
-
-
+
How do I submit a script to this page?
+
See information on how to contribute here.
+
+

- @@ -81,29 +80,36 @@ layout: default - - {% for script in site.data.scripts %} - {% unless script.HIDDEN == "1" %} - - - - - - - - - - {% endunless %} - {% endfor %} + {% + for script in site.data.scripts %}{% + unless script.HIDDEN == "1" %} + + + + + + + + {% + endunless %}{% + endfor %}
Filename Name Version Description……
- {{ script.filename }} - - (Github) - - {{ script.name }}{{ script.version }}{{ script.description | xml_escape | replace: '', '' }}{{ script.authors | xml_escape }} - - {{ script.modified | date: "%Y-%m-%d" }} - -
+ + {{ script.filename }} + + (Github) + + +
+ {{ script.name }} +
{{ script.version }}{{ script.description | xml_escape | replace: '', '' }}{% + if script.commands + %} {{ script.commands | xml_escape }}{% + endif + %}{{ script.authors | xml_escape }} + + {{ script.modified | date: "%Y-%m-%d" }} + +