diff options
| author | aura <boneyaard@gmail.com> | 2024-10-25 14:09:07 +0200 |
|---|---|---|
| committer | aura <boneyaard@gmail.com> | 2024-10-25 14:09:07 +0200 |
| commit | 5f07f79504e4776f2d68dbd6f99a9353c6d0441b (patch) | |
| tree | 1526a064faddff044bb44e5eae8a1c77275d342e /config/openbox/fonts-big | |
| parent | ecbf426896719a99c386ffbd69fd9f29c81eda4a (diff) | |
updat
Diffstat (limited to 'config/openbox/fonts-big')
| -rwxr-xr-x | config/openbox/fonts-big | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/config/openbox/fonts-big b/config/openbox/fonts-big new file mode 100755 index 0000000..81fd921 --- /dev/null +++ b/config/openbox/fonts-big @@ -0,0 +1,8 @@ +#!/usr/bin/node + +const fs = require( "fs" ); + +const smallconf = fs.readFileSync( "./big-templ.xml" ); +const conf = fs.readFileSync( "./rc-templ.xml" ).toString(); + +fs.writeFileSync( "./rc.xml", conf.replace( "<CustomFontConfig></CustomFontConfig>", smallconf ) ); |
