<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFCC" text="#333333">
    <div class="moz-cite-prefix">On 02/09/2016 01:12 PM, Jim Rees wrote:<br>
    </div>
    <blockquote cite="mid:20160209111243.GA15241@rees.org" type="cite">
      <pre wrap="">Louis-David Mitterrand wrote:

  I have a new Dell XPS 15" laptop with 3840x2160 resolution.
  
  In openbox is there a way/tool to scale up the UI like in gnome so the
  interface appears with a "normal" size while keeping native resolution?

The font sizes are all in points, so if you have correctly configured your X
server and fontconfig to know what dpi the screen is, the text should appear
in "normal" size. At least that's the theory. I'm not sure how the icons
work.
_______________________________________________
openbox mailing list
<a class="moz-txt-link-abbreviated" href="mailto:openbox@icculus.org">openbox@icculus.org</a>
<a class="moz-txt-link-freetext" href="http://icculus.org/mailman/listinfo/openbox">http://icculus.org/mailman/listinfo/openbox</a></pre>
    </blockquote>
    in other words, if you set dpi accordingly in your X server's
    settings, it should work.<br>
    something like this:<br>
    <br>
    <tt>#!/bin/bash<br>
      <br>
      XFT_SETTINGS="<br>
      Xft.antialias:  1<br>
      Xft.autohint:   0<br>
      Xft.dpi:        96 <== you need a different value here.<br>
      Xft.hinting:    1<br>
      Xft.hintstyle:  hintfull<br>
      Xft.lcdfilter:  lcddefault<br>
      Xft.rgba:       rgb<br>
      "<br>
      <br>
      echo "$XFT_SETTINGS" | xrdb -merge > /dev/null 2>&1<br>
      <br>
    </tt>save it, make executable and add to your autostart.<br>
    <br>
  </body>
</html>