add help
This commit is contained in:
parent
00c666c628
commit
2e6ef10555
1 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,5 @@
|
|||
require 'cgi'
|
||||
|
||||
class Radio
|
||||
include Cinch::Plugin
|
||||
|
||||
|
@ -13,17 +15,23 @@ class Radio
|
|||
f.puts(link)
|
||||
f.flush
|
||||
end
|
||||
open(link).read =~ /<title>(.*?) - YouTube<\/title>/
|
||||
m.reply "New song \""+$1+"\""
|
||||
File.open('/tmp/notify-send', 'w') do |f|
|
||||
f.puts($1)
|
||||
f.flush
|
||||
if open(link).read =~ /<title>(.*?) - YouTube<\/title>/
|
||||
m.reply "New song \""+CGI.unescapeHTML($1)+"\""
|
||||
File.open('/tmp/notify-send', 'w') do |f|
|
||||
f.puts($1)
|
||||
f.flush
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def on_help(m)
|
||||
m.reply 'curl "http://soyuz.labr.xyz:8080/" | play -q - 2>/dev/null'
|
||||
m.reply 'comandi: '
|
||||
m.reply ' info - ti dice la canzone che stai sentendo'
|
||||
m.reply ' pialla - cancella la canzone che stai sentendo'
|
||||
m.reply ' play <linkdiyoutube> - mette una canzone in playlist'
|
||||
m.reply ' next - ti fa sentire un altra roba'
|
||||
end
|
||||
|
||||
def on_pialla(m)
|
||||
|
|
Loading…
Reference in a new issue