diff --git a/css/glowingbear.css b/css/glowingbear.css index fd021fa..3478ef3 100644 --- a/css/glowingbear.css +++ b/css/glowingbear.css @@ -636,6 +636,10 @@ img.emojione { width: auto; } +.comicsans { + font-family: 'Comic Sans MS', 'Comic Neue', sans-serif; +} + .glyphicon-spin { -webkit-animation: spin 1000ms infinite linear; animation: spin 1000ms infinite linear; diff --git a/index.html b/index.html index 11b6eb5..877b00e 100644 --- a/index.html +++ b/index.html @@ -296,7 +296,7 @@ $ openssl req -nodes -newkey rsa:4096 -keyout relay.pem -x509 -days 365 -out rel <>
+ --> diff --git a/js/filters.js b/js/filters.js index 37ff9b9..0aa085b 100644 --- a/js/filters.js +++ b/js/filters.js @@ -210,4 +210,15 @@ weechat.filter('prefixlimit', function() { }; }); +// Messages mentioning Comic Sans should be set in it +weechat.filter('comicsansify', function() { + return function(text) { + if (/comic sans/gmi.test(text)) { + return '' + text + ''; + } else { + return text; + } + }; +}); + })();