#!/usr/bin/ruby -w

`pkginfo -i|grep ^xorg`.split.each_with_index do |e, i|
	next unless (i % 2).zero?

	`prt-get remove #{e}`
end
