X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=config.example.js;h=1314152faca35ffd7e098867d91271a7372bcfea;hb=b3b0ed4686002743acab4ab39e93e65a1db623e3;hp=85df3bf307e7a40e717a830420710fc6bf75915a;hpb=f83f4f0c6f3bce7833b89ccda40dfd183ed9e6f7;p=KiwiIRC.git diff --git a/config.example.js b/config.example.js index 85df3bf..1314152 100644 --- a/config.example.js +++ b/config.example.js @@ -75,6 +75,7 @@ conf.default_encoding = 'utf8'; /* * Default GECOS (real name) for IRC connections * %n will be replaced with the users nick +* %h will be replaced with the users hostname */ //conf.default_gecos = 'Web IRC Client'; @@ -181,12 +182,22 @@ conf.client = { scrollback: 250, show_joins_parts: true, show_timestamps: false, + use_24_hour_timestamps: true, mute_sounds: false, - show_emoticons: true + show_emoticons: true, + count_all_activity: true }, window_title: 'Kiwi IRC' }; +// List of themes available for the user to choose from +conf.client_themes = [ + 'relaxed', + 'mini', + 'cli', + 'basic' +]; + // If set, the client may only connect to this 1 IRC server //conf.restrict_server = "irc.kiwiirc.com"; @@ -201,6 +212,6 @@ conf.client = { /* - * Do not ammend the below lines unless you understand the changes! + * Do not amend the below lines unless you understand the changes! */ module.exports.production = conf;