]> git.r.bdr.sh - rbdr/lyricli.rb/blobdiff - bin/lrc
Add dangling files
[rbdr/lyricli.rb] / bin / lrc
diff --git a/bin/lrc b/bin/lrc
index 7bb26999cee3aeda4ea4b88323a31858458e798a..18371ab89487c4f4726d2e8333fcc40fb917d217 100755 (executable)
--- a/bin/lrc
+++ b/bin/lrc
@@ -3,8 +3,6 @@
 require 'optparse'
 require 'lyricli'
 
 require 'optparse'
 require 'lyricli'
 
-
-options = {}
 OptionParser.new do |opts|
     opts.banner = %{Usage:
     lrc [options]
 OptionParser.new do |opts|
     opts.banner = %{Usage:
     lrc [options]
@@ -15,33 +13,30 @@ Options:
 }
 
     opts.on("-e", "--enable SOURCE", "Enable SOURCE") do |source|
 }
 
     opts.on("-e", "--enable SOURCE", "Enable SOURCE") do |source|
-      puts "Enabling sources is not yet implemented"
+      Lyricli.enable(source)
+      puts "#{source} has been enabled"
       exit
     end
 
     opts.on("-l", "--list-sources", "List all available Sources") do
       exit
     end
 
     opts.on("-l", "--list-sources", "List all available Sources") do
-      puts Lyricli.sources
+      puts Lyricli.listSources()
       exit
     end
 
     opts.on("-d", "--disable SOURCE", "Disable SOURCE") do |source|
       exit
     end
 
     opts.on("-d", "--disable SOURCE", "Disable SOURCE") do |source|
-      puts "Disabling sources is not yet implemented"
+      Lyricli.disable(source)
+      puts "#{source} has been disabled"
       exit
     end
 
     opts.on("-r", "--reset SOURCE", "Reset the configuration of SOURCE") do |source|
       exit
     end
 
     opts.on("-r", "--reset SOURCE", "Reset the configuration of SOURCE") do |source|
-      puts "Resetting sources is not yet implemented"
+      Lyricli.reset(source)
+      puts "#{source} has been disabled and all its configuration reset"
       exit
     end
 
       exit
     end
 
-    opts.on("-h", "--help", "Shows this message") do
-      puts opts
-      exit
-    end
-
-    opts.on("-v", "--version", "Show version") do
-      puts Lyricli.version
-      exit
+    opts.on("-t", "--title", "Shows the song title and artist") do
+      Lyricli.show_title = true
     end
 end.parse!
 
     end
 end.parse!