]> git.r.bdr.sh - rbdr/lyricli.rb/blame_incremental - bin/lrc
Adds -t / --title option to show header
[rbdr/lyricli.rb] / bin / lrc
... / ...
CommitLineData
1#!/usr/bin/env ruby -w
2
3require 'optparse'
4require 'lyricli'
5
6OptionParser.new do |opts|
7 opts.banner = %{Usage:
8 lrc [options]
9 lrc artist song
10 lrc You must enable other sources for this
11
12Options:
13}
14
15 opts.on("-e", "--enable SOURCE", "Enable SOURCE") do |source|
16 Lyricli.enable(source)
17 puts "#{source} has been enabled"
18 exit
19 end
20
21 opts.on("-l", "--list-sources", "List all available Sources") do
22 puts Lyricli.sources
23 exit
24 end
25
26 opts.on("-d", "--disable SOURCE", "Disable SOURCE") do |source|
27 Lyricli.disable(source)
28 puts "#{source} has been disabled"
29 exit
30 end
31
32 opts.on("-r", "--reset SOURCE", "Reset the configuration of SOURCE") do |source|
33 Lyricli.reset(source)
34 puts "#{source} has been disabled and all its configuration reset"
35 exit
36 end
37
38 opts.on("-t", "--title", "Shows the song title and artist") do
39 Lyricli.show_title
40 end
41
42 opts.on("-h", "--help", "Shows this message") do
43 puts opts
44 exit
45 end
46
47 opts.on("-v", "--version", "Show version") do
48 puts Lyricli.version
49 exit
50 end
51end.parse!
52
53
54puts Lyricli.lyrics