class Spty::Command::UnmuteCommand

Constants

ASCRIPT_PLAYER_UNMUTE

Public Class Methods

call(options, _) click to toggle source
# File lib/spty/commands/unmute_command.rb, line 8
def self.call(options, _)
  return unless running?

  Spty::AppleScriptRunner.call(ASCRIPT_PLAYER_UNMUTE)
  puts "Player unmute"
end