summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlkka Pale2014-06-12 22:32:41 +0200
committerIlkka Pale2014-06-12 22:32:41 +0200
commiteca6050dc2eb24cdb569501ba5ea1b8affbe8b67 (patch)
treeea59c563d077cd56dc0279e22f42e0dd9d627275
parent561045738e5c45475ca688194a85f8b99ea97b5c (diff)
downloadscripts.irssi.org-eca6050dc2eb24cdb569501ba5ea1b8affbe8b67.tar.bz2
Add more emoticons to emo.pl
-rw-r--r--scripts/emo.pl18
1 files changed, 14 insertions, 4 deletions
diff --git a/scripts/emo.pl b/scripts/emo.pl
index cc2629c..c1772fa 100644
--- a/scripts/emo.pl
+++ b/scripts/emo.pl
@@ -3,7 +3,10 @@
# Irssi script for easy usage of unicode emoticons.
#
# Package `unifont` should have to be installed so that
-# some of these display correctly.
+# some of these display correctly. Depending on the font, some
+# of them may not really work anyway.
+#
+# Feel free to add your own.
#
# Enjoy! (⌐■_■)ノ♪♬
@@ -27,6 +30,7 @@ use Irssi::Irc;
%EMOTICONS = (
happy => 'ʘ‿ʘ',
+ smile => '◔ ⌣ ◔',
flex => 'ᕙ(⇀‸↼‶)ᕗ',
shrug => '¯\_(ツ)_/¯',
wave => '(•◡•)/',
@@ -43,7 +47,6 @@ use Irssi::Irc;
lenny => '(͡° ͜ʖ ͡°)',
gift => '(´・ω・)っ由',
disapprove => 'ಠ_ಠ',
- flex => 'ᕙ( ͡° ʖ͡°)ᕗ',
tired => 'ب_ب',
handsup => '╚(•⌂•)╝',
dance => '(⌐■_■)ノ♪♬',
@@ -52,7 +55,14 @@ use Irssi::Irc;
kiss => '(っ˘з(˘⌣˘ )',
owl => '◎▼◎',
hrm => '눈_눈',
- success => '(•̀ᴗ•́)و'
+ success => '(•̀ᴗ•́)و',
+ whatever => '◔_◔',
+ amazed => '\(◎o◎)/',
+ suave => '〜( ̄△ ̄〜)',
+ eyes => 'Ծ_Ծ',
+ ghost => '༼✷ɷ✷༽',
+ stoned => '{◕ ◡ ◕}',
+ angry => '►_◄',
);
sub emolist {
@@ -78,4 +88,4 @@ sub emo {
}
Irssi::command_bind('emo', 'emo');
-Irssi::command_bind('emolist', 'emolist'); \ No newline at end of file
+Irssi::command_bind('emolist', 'emolist');