#!/usr/bin/ruby

require 'rexml/document'
include REXML

file = File.new(File.expand_path("~") + "/.config/openbox/rc.xml")

doc = Document.new(file)

puts File.expand_path("~") + "/.themes/" + doc.root.elements["theme"].elements["name"].text + "/openbox-3/themerc"


