add script to convert schemes into xrdb(1) format

This commit is contained in:
Suraj N. Kurapati 2013-10-12 06:30:59 -07:00
parent 725cb8bdac
commit b31fa8a2fd

17
tools/iterm2xrdb Executable file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env ruby
#
# Converts iTerm2 color schemes into xrdb(1) format, as a set of `#define`s,
# and prints the result to STDOUT. Reads STDIN if no input files are given.
#
# Usage: iterm2xrdb FILE...
# Usage: cat FILE... | iterm2xrdb
# Usage: iterm2xrdb < INPUT
#
#--
# Written in 2013 by Suraj N. Kurapati <https://github.com/sunaku>
ARGF.read.scan(%r{>(.+?)</}).flatten(1).each_slice(7) do |color, *components|
puts "#define #{ color.gsub(/\W/, ?_) } #" + Hash[*components].
values_at('Red Component', 'Green Component', 'Blue Component').
map {|intensity| sprintf '%02x', (intensity.to_f * 255).round }.join
end