Shows system notifications in the terminal title bar.
Clears the terminal title
# File lib/notiffany/notifier/terminal_title.rb, line 11 def turn_off STDOUT.puts "\e]2;\a" end
# File lib/notiffany/notifier/terminal_title.rb, line 21 def _check_available(_options) end
# File lib/notiffany/notifier/terminal_title.rb, line 17 def _gem_name nil end
Shows a system notification.
@param [Hash] opts additional notification library options @option opts [String] message the notification message body @option opts [String] type the notification type. Either 'success',
'pending', 'failed' or 'notify'
@option opts [String] title the notification title
# File lib/notiffany/notifier/terminal_title.rb, line 32 def _perform_notify(message, opts = {}) first_line = message.sub(/^\n/, "").sub(/\n.*/, "") STDOUT.puts "\e]2;[#{opts[:title]}] #{first_line}\a" end