blob: 9ef153172f97c25662678f797b13febd58760755 (
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
|
# ██ ██
# ░░ ░░
# ██ ██████ ██████ ██████ ██
# ░██░░██░░█ ██░░░░ ██░░░░ ░██
# ░██ ░██ ░ ░░█████ ░░█████ ░██
# ░██ ░██ ░░░░░██ ░░░░░██░██
# ░██░███ ██████ ██████ ░██
# ░░ ░░░ ░░░░░░ ░░░░░░ ░░
#
# ▓▓▓▓▓▓▓▓▓▓
# ░▓ author ▓ xero <x@xero.nu>
# ░▓ code ▓ http://code.xero.nu/dotfiles
# ░▓ mirror ▓ http://git.io/.files
# ░▓▓▓▓▓▓▓▓▓▓
# ░░░░░░░░░░
utf8 = "on";
servers = (
{
address = "unix.chat";
chatnet = "unixchat";
port = "6697";
use_ssl = "yes";
ssl_verify = "yes";
ssl_capath = "/etc/ssl/certs/";
autoconnect = "yes";
}
);
chatnets = { unixchat = { type = "IRC"; nick = "neongold"; }; };
channels = (
{ name = "#unix"; chatnet = "unixchat"; autojoin = "Yes"; }
);
aliases = {
emote = "exec -o emote";
ascii = "exec -o toilet -f future --irc";
rusto = "exec -o toilet -f rusto --irc";
rustofat = "exec -o toilet -f rustofat --irc";
gay = "exec -o toilet -f term --gay --irc";
toilet = "exec -o toilet";
ns = "msg nickserv";
cs = "msg chanserv";
};
settings = {
core = { real_name = "neongold"; user_name = "neongold"; nick = "neongold"; };
"fe-text" = {
actlist_sort = "refnum";
term_force_colors = "yes";
indent = "12";
};
"fe-common/core" = {
theme = "neongold.theme";
bell_beeps = "no";
autolog_path = "/var/logs/irc/$tag/$0.log";
autolog = "yes";
};
};
logs = { };
statusbar = {
default = {
window = {
items = {
barstart = { priority = "100"; };
user = { };
window = { };
window_empty = { };
lag = { priority = "-1"; };
act = { priority = "10"; };
more = { priority = "-1"; alignment = "right"; };
barend = { priority = "100"; alignment = "right"; };
};
};
};
};
|