l: add emot-menu
This commit is contained in:
parent
99381f7c9d
commit
0947c93af4
31
lass/5pkgs/emot-menu/default.nix
Normal file
31
lass/5pkgs/emot-menu/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ coreutils, dmenu, gnused, writeDashBin, writeText, xdotool }: let
|
||||||
|
|
||||||
|
emoticons = writeText "emoticons" ''
|
||||||
|
¯\(°_o)/¯ | dunno lol shrug dlol
|
||||||
|
¯\_(ツ)_/¯ | dunno lol shrug dlol
|
||||||
|
( ͡° ͜ʖ ͡°) | lenny
|
||||||
|
¯\_( ͡° ͜ʖ ͡°)_/¯ | lenny shrug dlol
|
||||||
|
( ゚д゚) | aaah sad noo
|
||||||
|
ヽ(^o^)丿 | hi yay hello
|
||||||
|
(^o^; | ups hehe
|
||||||
|
(^∇^) | yay
|
||||||
|
┗(`皿´)┛ | angry argh
|
||||||
|
ヾ(^_^) byebye!! | bye
|
||||||
|
<(^.^<) <(^.^)> (>^.^)> (7^.^)7 (>^.^<) | dance
|
||||||
|
(-.-)Zzz... | sleep
|
||||||
|
(∩╹□╹∩) | oh noes woot
|
||||||
|
™ | tm
|
||||||
|
ζ | zeta
|
||||||
|
(╯°□°)╯ ┻━┻ | table flip
|
||||||
|
(」゜ロ゜)」 | why woot
|
||||||
|
'';
|
||||||
|
|
||||||
|
in
|
||||||
|
writeDashBin "emoticons" ''
|
||||||
|
set -efu
|
||||||
|
|
||||||
|
data=$(${coreutils}/bin/cat ${emoticons})
|
||||||
|
emoticon=$(echo "$data" | ${dmenu}/bin/dmenu | ${gnused}/bin/sed 's/ | .*//')
|
||||||
|
${xdotool}/bin/xdotool type -- "$emoticon"
|
||||||
|
exit 0
|
||||||
|
''
|
Loading…
Reference in New Issue
Block a user