From bf71c14ea7678e3abbd04537608a14bf503b4abe Mon Sep 17 00:00:00 2001 From: dequis Date: Thu, 7 Aug 2014 00:54:19 -0300 Subject: A few minor html/css changes - Limit version column width to 8em - Change css to make it more obvious that columns are clickable - Remove duplicate question from the FAQ in the index - Update URL to the github repo (the old one is a redirect) - A typo in the third question --- assets/css/style.css | 13 +++++++++++++ index.html | 20 +++++++------------- 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/assets/css/style.css b/assets/css/style.css index bcbd951..05d3e91 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1,3 +1,16 @@ dd { margin-bottom: 6px; } + +.version { + max-width: 8em; + word-wrap: break-word; +} + +table.sortable thead { + cursor: pointer; +} + +table.sortable thead th:hover { + opacity: 0.8; +} diff --git a/index.html b/index.html index c01ce85..fa90135 100644 --- a/index.html +++ b/index.html @@ -17,12 +17,6 @@ layout: default /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 .
@@ -36,12 +30,12 @@ layout: default directory (eg. cd ~/.irssi/scripts/autorun/ ; ln -s ../script.pl .) -
Is there an easy way of managing script?
Try +
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.
+
See information on how to contribute here.

@@ -59,16 +53,16 @@ layout: default {% for script in site.data.scripts %} - + {{ script.filename }} (Github) - {{ script.name }} - {{ script.version }} - {{ script.description }} - {{ script.authors }} + {{ script.name }} + {{ script.version }} + {{ script.description }} + {{ script.authors }} {% endfor %} -- cgit v1.2.3