diff options
| author | Ilkka Pale | 2014-06-12 22:32:41 +0200 |
|---|---|---|
| committer | Ilkka Pale | 2014-06-12 22:32:41 +0200 |
| commit | eca6050dc2eb24cdb569501ba5ea1b8affbe8b67 (patch) | |
| tree | ea59c563d077cd56dc0279e22f42e0dd9d627275 | |
| parent | 561045738e5c45475ca688194a85f8b99ea97b5c (diff) | |
| download | scripts.irssi.org-eca6050dc2eb24cdb569501ba5ea1b8affbe8b67.tar.bz2 | |
Add more emoticons to emo.pl
| -rw-r--r-- | scripts/emo.pl | 18 |
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'); |
