;======================
;    Titlebar v1.0
;       By Ss
;======================

;Generando un efecto de movimiento en el titlebar 

on *:start:{ .play -c $mircdirtitlebar.txt }
;Esto hara que ejecutemos los comandos que existen en ese fichero: titlebar.txt

La estructura de este titlebar.txt debe ser la siguiente:
titlebar S_ 
titlebar Ss_
titlebar Ssc_
titlebar Sscr_
titlebar Sscri_
titlebar Sscrip_
titlebar Sscript_
titlebar Sscript _
titlebar Sscript b_
titlebar Sscript by_
titlebar Sscript by _
titlebar Sscript by S_
titlebar Sscript by Ss
...
...
De esta forma crearas un efecto de movimiento en tu titlebar

;Actualizando la titlebar cada segundo

on *:connect:{ .timer 0 1 titlebar.change }
;Al conectar activamos el timer que ejecutara nuestro alias 'titblebar.change'

alias titlebar.change { titlebar [ Nick: $nick ] [ Hora: $time ] [ Idle: $idle ] }
;No comment

