diff options
Diffstat (limited to 'config/openbox/fonts-small')
| -rw-r--r-- | config/openbox/fonts-small | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/openbox/fonts-small b/config/openbox/fonts-small new file mode 100644 index 0000000..98b07d6 --- /dev/null +++ b/config/openbox/fonts-small @@ -0,0 +1,8 @@ +#!/usr/bin/node + +const fs = require( "fs" ); + +const smallconf = fs.readFileSync( "./small-templ.xml" ); +const conf = fs.readFileSync( "./rc-templ.xml" ).toString(); + +fs.writeFileSync( "./rc.xml", conf.replace( "<CustomFontConfig></CustomFontConfig>", smallconf ) ); |
