From 6353236f1e13aa522325f742d64da5fa7067ec44 Mon Sep 17 00:00:00 2001 From: NeodarZ Date: Tue, 28 Feb 2017 14:12:19 +0100 Subject: Add my fucking weechat theme --- weechat/guile/emote.scm | 74 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 weechat/guile/emote.scm (limited to 'weechat/guile/emote.scm') diff --git a/weechat/guile/emote.scm b/weechat/guile/emote.scm new file mode 100644 index 0000000..65f058d --- /dev/null +++ b/weechat/guile/emote.scm @@ -0,0 +1,74 @@ +; Copyright (c) 2014 by csmith +; +; This program is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 3 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with this program. If not, see . +; +; +; (this script requires WeeChat 0.4.1 or newer) +; +; History: +; 2016-06-03, nycatelos +; version 0.2: added additional emotes +; 2014-05-03, csmith +; version 0.1: initial release + +(use-modules (srfi srfi-69)) + +(weechat:register "emote" "Caleb Smith" "0.2" "GPL" "Emote" "" "") + +; Mappings of words with their emoticons +(define patterns (alist->hash-table '( + ("tableflip" . "(╯° °)╯︵ ┻━┻)") + ("rageflip" . "(ノಠ益ಠ)ノ彡┻━┻") + ("doubleflip" . "┻━┻ ︵ヽ(`Д´)ノ︵ ┻━┻") + ("lookofdisapproval" . "ಠ_ಠ") + ("sun" . "☼") + ("kitaa" . "キタ━━━(゜∀゜)━━━!!!!!") + ("joy" . "◕‿◕") + ("nyancat" . "~=[,,_,,]:3") + ("lennyface" . "( ͡° ͜ʖ ͡°)") + ("shrug" . "¯\\_(ツ)_/¯") + ("denko" . "(・ω・)") + ("tableplace" . "┬─┬ ノ( ゜-゜ノ)") +))) + + +; Derive the tab completion string for the subcommands. +(define tab-completions + (apply string-append + (map (lambda (i) (string-append "|| " i)) + (hash-table-keys patterns)))) + + +; Hook main function up to the /emote command +(weechat:hook_command + "emote" "Emote" "/emote phrase" + (string-append + "" + "\nUse `/emote phrase`. Words in phrase will be replaced with their" + "\nemoticons:" + "\n" + "\nExamples:" + "\n /emote tableflip - (╯° °)╯︵ ┻━┻)" + "\n /emote look - ಠ_ಠ") + tab-completions + "main" "") + + +; Handle the IRC command given by the user. Sets input buffer as a side-effect +(define (main data buffer command) + (weechat:buffer_set buffer "input" + (apply string-append (map (lambda (c) + (string-append (hash-table-ref/default patterns c c) " ")) + (string-tokenize command)))) + weechat:WEECHAT_RC_OK) -- cgit v1.2.1