-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
37 lines (28 loc) · 994 Bytes
/
Copy pathREADME
File metadata and controls
37 lines (28 loc) · 994 Bytes
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
% Example config file
nick=clIRC
server=irc.epita.fr
% %a : Alias name
% %d : Date // FIXME: add date pattern definition
% %t : Time // FIXME: add time pattern definition
% %c : Aim (#chan or 'QUERY' or server action)
% %p : Pseudonyme
screen_pattern = [%t][%c] <%p>
% Will show for exemple: [11:42:37][#test] <Doe> Hello world !
% or [13:56:01][QUERY] <Doe> Hello you !
% or [13:56:01][QUIT] <Doe> Ping timeout
% Dummy example
logfile_pattern= Hey, at %t, %p said
% Create a new alias "epita" with foreground color pink and no background color
/alias new epita pink
% Add the chan #epita and #epita2016 in the alias "epita"
/alias add epita chan #epita
/alias add epita chan #epita2016
% Activate log and set the logfile of alias "epita"
/alias set epita log on
/alias set epita logfile ~/log/epita.log
/alias new blabla_serveur
% catch all server message and hide it on screen
/alias add blabla_serveur @server
/alias set blabla_serveur visiblity hidden
/join #epita
/join #epita2016