From f771958f033684eee63cc47e1a446276697a8bfc Mon Sep 17 00:00:00 2001 From: Alexander Færøy Date: Sat, 31 May 2014 12:44:57 +0200 Subject: Add initial page --- _includes/footer.html | 4 ++++ _includes/header.html | 13 +++++++++++++ _layouts/default.html | 5 +++++ index.html | 43 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 65 insertions(+) create mode 100644 _includes/footer.html create mode 100644 _includes/header.html create mode 100644 _layouts/default.html create mode 100644 index.html diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..9885047 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,4 @@ + + + + diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..106b79c --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,13 @@ + + + + + + + Irssi Scripts + + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..7ee00ac --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,5 @@ +{% include header.html %} + +{{ content }} + +{% include footer.html %} diff --git a/index.html b/index.html new file mode 100644 index 0000000..d86738e --- /dev/null +++ b/index.html @@ -0,0 +1,43 @@ +--- +layout: default +--- + +
+
+ +
+ +
+
+
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 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 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 + ../script.pl .)
+
+ +
+
+
+ -- cgit v1.2.3