Popularity
2.4
Growing
Activity
0.0
Stable
6
3
0

Programming language: Crystal
License: GNU General Public License v3.0 or later
Tags: Misc    
Latest version: v0.2.0

iterm2 alternatives and similar shards

Based on the "Misc" category.
Alternatively, view iterm2 alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of iterm2 or a related project?

Add another 'Misc' Shard

README

iterm2

GitHub Release Build Status Documentation

Displays images within the terminal using the ITerm2 Inline Images Protocol.

Requires ITerm2.

Installation

  1. Add the dependency to your shard.yml:
dependencies:
  iterm2:
    github: toddsundsted/iterm2
  1. Run shards install

Usage

require "iterm2"

File.open("unicorn.png") do |file|
  Iterm2.new.display(file)
end

The #display method also accepts a block and yields an instance of IO that may be written to. See the documentation for the full API.

Contributors