How can i split openbox `rc.xml` into multiple files?
listed in answer
ANSWER:
Why don’t you just split it in the files you propose and then just cat them all together?
cat rc-something.xml rc.keyboard.xml rc.mouse.xml > rc.xml
The only problem is that you will need to cat them each time you modify one of the individual files, but that should be trivial..
by pedrosaurio from http://unix.stackexchange.com/questions/37123

New Comments