summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 7852b7512d60dba344ee9cfec354a7eca7cd2f8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
---
layout: default
---

<div class="container">
    <div class="row">
        <div class="page-header">
            <h1>Irssi's Script Repository</h1>
        </div>
    </div>

    <div class="row">
        <dl>
            <dt>How do I run scripts?</dt>
            <dd>Put them into <code>~/.irssi/scripts/</code> and in irssi do
            <code>/script load script.pl</code> . There is a default alias for
            <code>/script load</code> to <code>/run</code> in newer versions of
            irssi.</dd>

            <dt>How do I rerun scripts?</dt>
            <dd>Just do <code>/script load script.pl</code> .</dd>

            <dt>How do I unload scripts?</dt>
            <dd>Just do <code>/script unload script.pl</code> .</dd>

            <dt>How do I run scripts automatically at startup?</dt>
            <dd>Put them into <code>~/.irssi/scripts/autorun/</code> directory.
            Or better would be if you placed them in
            <code>~/.irssi/scripts/</code> and created symlinks to autorun
            directory (eg. <code>cd ~/.irssi/scripts/autorun/ ; ln -s
                ../script.pl .</code>)</dd>

            <dt>Is there an easy way of managing scripts?</dt> <dd>Try
            <code>scriptassist.pl</code>, it can update and manage your scripts
            as well as install new ones and search the database.</dd>

            <dt>How do I submit a script to this page?</dt>
            <dd>See information on how to contribute <a href="https://github.com/irssi/scripts.irssi.org">here</a>.</dd>
        </dl>
	
        <hr>

        <input type="search" class="light-table-filter form-control" data-table="sortable" data-name="q" placeholder="Filter" style="width: 100%">
        <table class="table table-striped table-condensed sortable">
            <thead>
                <tr>
                    <th class="sorttable_alpha">Filename</th>
                    <th class="sorttable_alpha">Name</th>
                    <th class="sorttable_alpha">Version</th>
                    <th class="sorttable_alpha">Description</th>
                    <th class="sorttable_alpha">Authors</th>
                    <th class="sorttable_alpha">Modified</th>
                    <th class="sorttable_numeric" id="th-votes">&hellip;&hellip;</th>
                </tr>
            </thead>
            <tbody>
            {% for script in site.data.scripts %}
                <tr id="script-{{ script.filename | replace: ".", "_" }}">
                    <td class="filename">
                        <a href="scripts/{{ script.filename }}">{{ script.filename }}</a>
                        <small>
                           (<a href="https://github.com/irssi/scripts/blob/master/scripts/{{ script.filename }}">Github</a>)
                        </small>
                    </td>
                    <td class="name">{{ script.name }}</td>
                    <td class="version">{{ script.version }}</td>
                    <td class="description">{{ script.description | xml_escape }}</td>
                    <td class="authors">{{ script.authors }}</td>
                    <td class="modified" sorttable_customkey="{{ script.modified | date: "%Y%m%d%H%M%S" }}">
                        <abbr class="timeago" title="{{ script.modified | date: "%Y-%m-%dT%H:%M:%SZ" }}">
                            {{ script.modified | date: "%Y-%m-%d" }}
                        </abbr>
                    </td>
		    <td class="votes"></td>
                </tr>
            {% endfor %}
            </tbody>
        </table>
    </div>
</div>