<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Creating a splash screen in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947051#M931189</link>
    <description>Wodisch - If you repost I'll give you some more points since the problem was my picture's problem and not yours.</description>
    <pubDate>Wed, 09 Apr 2003 18:28:18 GMT</pubDate>
    <dc:creator>John Meissner</dc:creator>
    <dc:date>2003-04-09T18:28:18Z</dc:date>
    <item>
      <title>Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947037#M931175</link>
      <description>I have several scripts that I'd like to add a splash screen to.  I've done all my scripting in ksh.  is there a way for me to display graphics at the scripts startup?  and if so can I differentiate between a terminal and an X display to do this?&lt;BR /&gt;&lt;BR /&gt;I know this is a "nice to have" thing.  I just don't know if it's possible.</description>
      <pubDate>Wed, 09 Apr 2003 11:04:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947037#M931175</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T11:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947038#M931176</link>
      <description>It is possible, but not easy.  I think the easiest thing to do, is test for DISPLAY, if it's set you could display a graphic.  If it's not, then dont.&lt;BR /&gt;&lt;BR /&gt;You would want to at least call the graphics with a minimum of perl, because it would be much easier.  In a shell, the loop/script will stop executing when you xwud a graphic.  In perl/C/C++ you can continue the code, then go back and drop that function.  Much easier to do.&lt;BR /&gt;&lt;BR /&gt;If you use perl, and your shells are all vt220 or better you can use curses to do nice borders, colors, highlighting, etc...  &lt;BR /&gt;&lt;BR /&gt;Fancy is much better in Perl or C.  &lt;BR /&gt;&lt;BR /&gt;Any shell is going to be rough and rugged, but work very well.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shannon</description>
      <pubDate>Wed, 09 Apr 2003 11:55:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947038#M931176</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2003-04-09T11:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947039#M931177</link>
      <description>I'm actually looking into perl but I have very very little experience using perl.  I don't know how to display a graphic using perl but I'm trying to find out.  &lt;BR /&gt;&lt;BR /&gt;I'm not finding much on google about this subject either.</description>
      <pubDate>Wed, 09 Apr 2003 12:00:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947039#M931177</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T12:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947040#M931178</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Look at&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; dtksh(user cmd)                                             dtksh(user cmd)&lt;BR /&gt;&lt;BR /&gt; NAME&lt;BR /&gt;      dtksh - shell command language interpreter with access to many X, Xt,&lt;BR /&gt;      Xm and CDE functions&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;             Steve Steel</description>
      <pubDate>Wed, 09 Apr 2003 12:16:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947040#M931178</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2003-04-09T12:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947041#M931179</link>
      <description>There are literally libraries of Perl cookbooks and guides.  Perl Black book 2nd editition is very good, Learining Perl (O'Reilly and Associates) is a good starting point.  basically, you run a &lt;BR /&gt;system("/usr/bin/X11/xwid spash.xwd");&lt;BR /&gt;if it's an X dump.  You would need a separate app no matter what the graphic is, as nothing displays auto-magically.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shannon</description>
      <pubDate>Wed, 09 Apr 2003 12:21:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947041#M931179</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2003-04-09T12:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947042#M931180</link>
      <description>That's a step in the direction I want to go... &lt;BR /&gt;&lt;BR /&gt;but I would eventually like to take a picture of a logo... and have it display when launching the script.  (I'm not looking to do ascii word art with colors as a splash).&lt;BR /&gt;&lt;BR /&gt;I think this might be much more trouble than it's worth.  I do appreciate the help though.  thanks for the effort.</description>
      <pubDate>Wed, 09 Apr 2003 12:54:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947042#M931180</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T12:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947043#M931181</link>
      <description>I have written a few dtksh scripts.  They are very good for displaying menus. It is possible to display as splash pop-up, but I cannot think of a way to display your image file without using/bundling an image viewer as well.&lt;BR /&gt;&lt;BR /&gt;Good Luck!</description>
      <pubDate>Wed, 09 Apr 2003 15:18:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947043#M931181</guid>
      <dc:creator>Robert Gamble</dc:creator>
      <dc:date>2003-04-09T15:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947044#M931182</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;if you want a pretty simple, but just a little crude version to do this, look at "xwd" and "xwud". The first to save an existing window/picture to a file, the second to display it again...&lt;BR /&gt;&lt;BR /&gt;once: &lt;BR /&gt;$ xwd -out /tmp/picture.xwd&lt;BR /&gt;&lt;BR /&gt;often: &lt;BR /&gt;$ xuwd -in /tmp/picture.xwd -geometry +400+200 &amp;amp;&lt;BR /&gt;$ pid="$!"&lt;BR /&gt;$ sleep 10 # or do something&lt;BR /&gt;$ kill $pid&lt;BR /&gt;&lt;BR /&gt;FWIW,&lt;BR /&gt;Wodisch&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Apr 2003 16:30:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947044#M931182</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2003-04-09T16:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947045#M931183</link>
      <description>Wodisch - You're the closest so far.  Everything you told me works... except the picture didn't display ... I'm not sure why.  I'll play around with this some more and see If I can get it working.  and I didn't have xuwd... it's xwud on my system... I'm guessing this is a type-o</description>
      <pubDate>Wed, 09 Apr 2003 17:53:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947045#M931183</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T17:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947046#M931184</link>
      <description>Hi John,&lt;BR /&gt;&lt;BR /&gt;Are you putting in a splash screen in front of your disaster recovery scripts to scare off any unauthorized users who might want try to run them?   How about a nice skull and crossbones logo!   :)&lt;BR /&gt;&lt;BR /&gt;JP&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Apr 2003 17:59:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947046#M931184</guid>
      <dc:creator>John Poff</dc:creator>
      <dc:date>2003-04-09T17:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947047#M931185</link>
      <description>xwud is in /usr/bin/X11, or at least should be.  It's a base utility for X, and actually means "X Window Un-Display".&lt;BR /&gt;&lt;BR /&gt;The reason it may not work, is because your image format is not in X-windows dump format.  To create this, use "xwd" or "X Window Dump", again in /usr/bin/X11.&lt;BR /&gt;&lt;BR /&gt;I.E.&lt;BR /&gt;&lt;BR /&gt;/usr/bin/X11/xwd -out /someplace/mysplash.xwd -nobdrs -db&lt;BR /&gt;&lt;BR /&gt;You can read the man pages for other options, especially if you dont want borders.&lt;BR /&gt;&lt;BR /&gt;You need to have the image available in X on display in a single window to create it.  &lt;BR /&gt;&lt;BR /&gt;You can also use HP screen capture if you have it installed.  This installs with the wt toolkit, along with white board, shared X, etc....  Gimp can also save your image as xwd format.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Shannon</description>
      <pubDate>Wed, 09 Apr 2003 18:04:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947047#M931185</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2003-04-09T18:04:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947048#M931186</link>
      <description>Hey John.... I was actually thinking either a company logo... (ok... end obligatory company BS)  or more likely I wanted to do a pic of a phoenix... appropriate if you think of a phoenix raising from the ashes and a server being recovered from a disaster.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;by the way... the candy IS being worked on.... filling up a box to send to you for your help :)</description>
      <pubDate>Wed, 09 Apr 2003 18:04:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947048#M931186</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T18:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947049#M931187</link>
      <description>Sorry, doing too many things at once today ;)  xwud means "X Windows Un-DUMP", not un-display. &lt;BR /&gt;&lt;BR /&gt;Shannon</description>
      <pubDate>Wed, 09 Apr 2003 18:07:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947049#M931187</guid>
      <dc:creator>Shannon Petry</dc:creator>
      <dc:date>2003-04-09T18:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947050#M931188</link>
      <description>I tried using xwd... but for some reason it didn't work... i used Gimp from my linux box.  I had to flatten the image first (probably my problem) and then I saved it as xwd format.  Then displaying the image worked.  Thank you all for your help :)</description>
      <pubDate>Wed, 09 Apr 2003 18:26:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947050#M931188</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T18:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a splash screen</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947051#M931189</link>
      <description>Wodisch - If you repost I'll give you some more points since the problem was my picture's problem and not yours.</description>
      <pubDate>Wed, 09 Apr 2003 18:28:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/creating-a-splash-screen/m-p/2947051#M931189</guid>
      <dc:creator>John Meissner</dc:creator>
      <dc:date>2003-04-09T18:28:18Z</dc:date>
    </item>
  </channel>
</rss>

