Announcement

Collapse
No announcement yet.

Motif 2.3.4 On The LGPL License

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #11
    Maybe those retro desktop environments will become new again

    I remember CDE from working with AIX workstations...fun stuff

    Comment


    • #12
      Originally posted by Ibidem View Post
      (via X resources)
      Sorry for being off-topic but do you know how can I discover the Xresources used by a particular program, say xterm? Is there some command that lists them?

      Comment


      • #13
        That'd be "man xterm"

        Comment


        • #14
          Originally posted by kobblestown View Post
          Sorry for being off-topic but do you know how can I discover the Xresources used by a particular program, say xterm? Is there some command that lists them?
          As curaga suggested, read the manpage: it usually says a good deal. But there are a couple other things....
          Code:
          man $PROGNAME
          man editres
          man appres
          #if you're wondering about classname, run and click!
          xprop | grep WM_CLASS
          Or, for a full all-in-one-pass command:
          Code:
          appres `xprop | grep WM_CLASS | awk -F'"' '{print $(NF-1)}'`
          And the defaults are in {/etc,/usr/share}/X11/app-defaults/$WM_CLASS[$customization]
          eg, add
          Code:
          *customization: -color
          if you want to really make the Xaw stuff look better and activate full color prompts in xterm

          Comment

          Working...
          X