Difference between revisions of "openbox window decoration too small"
From thelinuxwiki
(→solution) |
|||
Line 18: | Line 18: | ||
==solution== | ==solution== | ||
the above settings were changed... 8 to 12 and 9 to 14, then the xsession was restarted. upon login issues is fixed. font size is much better. | the above settings were changed... 8 to 12 and 9 to 14, then the xsession was restarted. upon login issues is fixed. font size is much better. | ||
+ | |||
+ | to resize using sed | ||
+ | |||
+ | $ sed -i 's/<size>8<\/size>/<size>12<\/size>/' ~/.config/openbox/rc.xml | ||
+ | $ sed -i 's/<size>9<\/size>/<size>14<\/size>/' ~/.config/openbox/rc.xml | ||
+ | |||
[[file:openbox_windowdecorsize-fixed.jpeg]] | [[file:openbox_windowdecorsize-fixed.jpeg]] |
Latest revision as of 16:04, 8 May 2016
openbox default font sizes too small
openbox config file:
~/.config/openbox/rc.xml
default font sizes
$ cat ~/.config/openbox/rc.xml | grep -E "<size>.*</size>" <size>8</size> <size>8</size> <size>9</size> <size>9</size> <size>9</size> <size>9</size>
solution
the above settings were changed... 8 to 12 and 9 to 14, then the xsession was restarted. upon login issues is fixed. font size is much better.
to resize using sed
$ sed -i 's/<size>8<\/size>/<size>12<\/size>/' ~/.config/openbox/rc.xml $ sed -i 's/<size>9<\/size>/<size>14<\/size>/' ~/.config/openbox/rc.xml