- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Creating a splash screen
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 04:04 AM
тАО04-09-2003 04:04 AM
I know this is a "nice to have" thing. I just don't know if it's possible.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 04:55 AM
тАО04-09-2003 04:55 AM
Re: Creating a splash screen
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.
If you use perl, and your shells are all vt220 or better you can use curses to do nice borders, colors, highlighting, etc...
Fancy is much better in Perl or C.
Any shell is going to be rough and rugged, but work very well.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 05:00 AM
тАО04-09-2003 05:00 AM
Re: Creating a splash screen
I'm not finding much on google about this subject either.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 05:16 AM
тАО04-09-2003 05:16 AM
Re: Creating a splash screen
Look at
dtksh(user cmd) dtksh(user cmd)
NAME
dtksh - shell command language interpreter with access to many X, Xt,
Xm and CDE functions
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 05:21 AM
тАО04-09-2003 05:21 AM
Re: Creating a splash screen
system("/usr/bin/X11/xwid spash.xwd");
if it's an X dump. You would need a separate app no matter what the graphic is, as nothing displays auto-magically.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 05:54 AM
тАО04-09-2003 05:54 AM
Re: Creating a splash screen
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).
I think this might be much more trouble than it's worth. I do appreciate the help though. thanks for the effort.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 08:18 AM
тАО04-09-2003 08:18 AM
Re: Creating a splash screen
Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 09:30 AM
тАО04-09-2003 09:30 AM
Re: Creating a splash screen
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...
once:
$ xwd -out /tmp/picture.xwd
often:
$ xuwd -in /tmp/picture.xwd -geometry +400+200 &
$ pid="$!"
$ sleep 10 # or do something
$ kill $pid
FWIW,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 10:53 AM
тАО04-09-2003 10:53 AM
Re: Creating a splash screen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 10:59 AM
тАО04-09-2003 10:59 AM
Re: Creating a splash screen
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! :)
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 11:04 AM
тАО04-09-2003 11:04 AM
SolutionThe 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.
I.E.
/usr/bin/X11/xwd -out /someplace/mysplash.xwd -nobdrs -db
You can read the man pages for other options, especially if you dont want borders.
You need to have the image available in X on display in a single window to create it.
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.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 11:04 AM
тАО04-09-2003 11:04 AM
Re: Creating a splash screen
by the way... the candy IS being worked on.... filling up a box to send to you for your help :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 11:07 AM
тАО04-09-2003 11:07 AM
Re: Creating a splash screen
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 11:26 AM
тАО04-09-2003 11:26 AM
Re: Creating a splash screen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-09-2003 11:28 AM
тАО04-09-2003 11:28 AM