diff options
author | NeodarZ <bretoncorentin44@gmail.com> | 2017-02-28 14:12:19 +0100 |
---|---|---|
committer | NeodarZ <bretoncorentin44@gmail.com> | 2017-02-28 14:12:19 +0100 |
commit | 6353236f1e13aa522325f742d64da5fa7067ec44 (patch) | |
tree | bc2fb63d6ac62b4a85983dbe24d7484ea22878a1 /weechat/guile | |
parent | ad84a2e11e6ad5dc6d651949b8fd0f343064632f (diff) | |
download | dotfiles_ascii-6353236f1e13aa522325f742d64da5fa7067ec44.tar.xz dotfiles_ascii-6353236f1e13aa522325f742d64da5fa7067ec44.zip |
Add my fucking weechat theme
Diffstat (limited to 'weechat/guile')
l--------- | weechat/guile/autoload/emote.scm | 1 | ||||
-rw-r--r-- | weechat/guile/emote.scm | 74 |
2 files changed, 75 insertions, 0 deletions
diff --git a/weechat/guile/autoload/emote.scm b/weechat/guile/autoload/emote.scm new file mode 120000 index 0000000..6be0bb4 --- /dev/null +++ b/weechat/guile/autoload/emote.scm @@ -0,0 +1 @@ +../emote.scm
\ No newline at end of file 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 <caleb.smithnc@gmail.com> +; +; 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 <http://www.gnu.org/licenses/>. +; +; +; (this script requires WeeChat 0.4.1 or newer) +; +; History: +; 2016-06-03, nycatelos <nycatelos@gmail.com> +; version 0.2: added additional emotes +; 2014-05-03, csmith <caleb.smithnc@gmail.com> +; 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) |