Sponsored Content
Full Discussion: Screen saver
Top Forums UNIX for Dummies Questions & Answers Screen saver Post 9593 by marist89 on Tuesday 30th of October 2001 02:52:19 PM
Old 10-30-2001
1. right click on your desktop
2. Applications, Application Manager, Desktop Controls, Screen Style Manager
 

9 More Discussions You Might Find Interesting

1. Solaris

how to remove the screen saver on solaris box

Hi, :) I have a Sun 3500 box with solaris 8 in it. I dont know who had installed the screen saver. every 5 minutes the screen saver comes up. Its annoying when we are working on the console. Can any one tell what i can do to remove the screen saver. Thanks in advance. Ishila. :) (4 Replies)
Discussion started by: ishila
4 Replies

2. Shell Programming and Scripting

My screen saver for a plain session

Good day. :) I don't know exactly where or how to post this kind of stuff, but I though I'd like to have a look at my "Screen Saver" in progress. Comments welcome. This uses bash. Just copy and pase into any file. Make o+x and run. Feel free to edit and change all u like. Thanks. ... (0 Replies)
Discussion started by: Blooper
0 Replies

3. UNIX and Linux Applications

screen saver in UNIX~~~~~~HELP NEEDED

One of my Sun Box running SUNOS 4.1.3_U1, the screen saver in turn on. if there anyway to disable the screen saver? Thanks (0 Replies)
Discussion started by: AirWalker83
0 Replies

4. Solaris

screen saver command line on solaris10-intel

Hi All, I'm on Solaris10-intel and I'm on the classic GUI, CDE. Can't find the control for screen saver. Is there's a command line equivalent? Thanks in advance, itik (0 Replies)
Discussion started by: itik
0 Replies

5. Solaris

Screen Saver Resolution

I am using sun solaris machine i have given the specs of that machine given below Name of athe Platform : SUNW,Ultra-5_10 Machiene hardware :sun4u Processor Type :sparc Operating system : solaris 10 Monitory TYpe : SAMSUNG Sync Master... (2 Replies)
Discussion started by: ambavaram
2 Replies

6. Solaris

screen saver

I am using solaris 10 x86, i am trying to create my own sreensavers using the pictures in my folder. pls can someone tell on how to go about this (1 Reply)
Discussion started by: seyiisq
1 Replies

7. UNIX for Dummies Questions & Answers

Screen Saver for LINUX - ROOT

Good Morning. I have a question about screen savers in LINUX especially CENTOS. I don't seem to have a problem setting the screen saver with a password required for the root account(version 5.3). I'm told earlier versions you could not set it for. I was wondering if newer versions of LINUX had... (1 Reply)
Discussion started by: ejjones
1 Replies

8. Red Hat

command line tool to disable screen lock and/or screen saver

Hi, I have a simple question : how to disable screen lock and/or sreen saver with command line with RHEL5.4 ? (1 Reply)
Discussion started by: albator1932
1 Replies

9. Windows & DOS: Issues & Discussions

Screen saver mode at work

Hi, At work, the PC Windows 7 goes to screen saver mode after 10 minutes. I don't have access to change that. It's grayed out for me. After 10 minutes, the IM will say " AWAY" and my email status will say " AWAY ". Email and IM both are from Microsoft. My question is there any work... (2 Replies)
Discussion started by: samnyc
2 Replies
MoreFiles(3)						User Contributed Perl Documentation					      MoreFiles(3)

NAME
Mac::MoreFiles - Sophisticated file management routines SYNOPSIS
use Mac::MoreFiles; $application = $Application{"MrPL"}; DESCRIPTION
Variables %Application The %Application hash will return the path to the application for a given signature, searching on all mounted volumes. Functions FSpCreateMinimum SPEC Create a new file with no creator or file type. The FSpCreateMinimum function creates a new file without attempting to set the the creator and file type of the new file. This function is needed to create a file in an AppleShare "dropbox" where the user can make changes, but cannot see folder or files. The FSSpec in SPEC is used to create the file. FSpShare SPEC Establish a local volume or directory as a share point. The FSpShare function establishes a local volume or directory as a share point. SPEC is an FSSpec record specifying the share point. FSpUnshare SPEC The FSpUnshare function removes a share point in SPEC. FSpFileCopy SRCSPEC, DSTSPEC, COPYNAME, PREFLIGHT The FSpFileCopy function duplicates a file and optionally renames it. Since the PBHCopyFile() routine is only available on some AFP server volumes under specific conditions, this routine either uses PBHCopyFile(), or does all of the work PBHCopyFile() does. The SRCSPEC is used to determine the location of the file to copy. The DSTSPEC is used to determine the location of the destination directory. If COPYNAME <> NIL, then it points to the name of the new file. FSpDirectoryCopy SRCSPEC, DSTSPEC, PREFLIGHT, [COPYERRHANDLER] Make a copy of a directory structure in a new location. The FSpDirectoryCopy function makes a copy of a directory structure in a new location. COPYERRHANDLER is the Perl routine name to handle an error, should one arise. It will be called as: $bailout = &$COPYERRHANDLER(ERRORCODE,OPERATION,SRCSPEC,DSTSPEC); FSpIterateDirectory SPEC, MAXLEVELS, ITERATEFILTER, YOURDATAPTR Iterate (scan) through a directory's content. The FSpIterateDirectory function performs a recursive iteration (scan) of the specified directory and calls your ITERATEFILTER function once for each file and directory found. The MAXLEVELS parameter lets you control how deep the recursion goes. If MAXLEVELS is 1, FSpIterateDirectory only scans the specified directory; if MAXLEVELS is 2, FSpIterateDirectory scans the specified directory and one subdirectory below the specified directory; etc. Set MAXLEVELS to zero to scan all levels. The YOURDATAPTR parameter can point to whatever data structure you might want to access from within the ITERATEFILTER. Your filter function will be called as: $quit = &$filterFunction(YOURDATAPTR, SPEC); FSpDTGetAPPL VOLUME, CREATOR The FSpDTGetAPPL function finds an application (file type 'APPL') with the specified CREATOR on the specified VOLUME. It first tries to get the application mapping from the desktop database. If that fails, then it tries to find an application with the specified creator using the File Manager's CatSearch() routine. If that fails, then it tries to find an application in the Desktop file. Returns FSSpec or "undef" on failure. FSpDTSetComment SPEC, COMMENT The FSpDTSetComment function sets a file or directory's Finder comment field. The volume must support the Desktop Manager because you only have read access to the Desktop file. FSpDTGetComment SPEC The FSpDTGetComment function gets a file or directory's Finder comment field (if any) from the Desktop Manager or if the Desktop Manager is not available, from the Finder's Desktop file. Returns Str255, or "undef" on failure. FSpDTCopyComment SRCSPEC, DSTSPEC The FSpDTCopyComment function copies the desktop database comment from the source to the destination object. Both the source and the destination volumes must support the Desktop Manager. AUTHOR
Written by Matthias Ulrich Neeracher <neeracher@mac.com>, documentation by Bob Dalgleish <bob.dalgleish@sasknet.sk.ca>. Currently maintained by Chris Nandor <pudge@pobox.com>. perl v5.18.2 2017-10-06 MoreFiles(3)
All times are GMT -4. The time now is 09:17 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy