Sponsored Content
Top Forums UNIX for Dummies Questions & Answers ScreenSaver into Background Question Post 302501552 by wat_up_m on Thursday 3rd of March 2011 10:32:09 PM
Old 03-03-2011
ScreenSaver into Background Question

(Keeping in mind I know very little about Unix...)
When I am typing this out (without copy-pasting the whole thing) to get my screensaver onto my background:

/System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background

I start something like this:
cd /System/ [Enter]
cd Library/ [Enter]

I go through opening all the files and get stuck trying to open the screensaver into the background. (cd ScreenSaverEngine -background does not work so I assume it's 'open')
open ScreenSaverEngine -background
LSGetApplicationForInfo() failed with error -10814 while trying to determine the application with bundle identifier ackground.

Just hoping somebody can tell me how to run the screensaver into the background without having to copy paste the line. (Although it's faster, I prefer going through the steps myself)
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Screensaver and 'fortune'

(SuSE Linux 8.2 Personal) I'm sure the answer to this will be simple, but it's been driving me insane for the last couple days. SuSE 8.2 comes with a bunch of screensavers, but a handful of them just repeatedly display 'sh: line 1: fortune: command not found'. I've been scouring endlessly... (4 Replies)
Discussion started by: Darkstripes
4 Replies

2. Filesystems, Disks and Memory

how to create screensaver for unix in java??

i would like to create a screensaver for unix platform in java. with an interface through which i can change the kinds of *.jpg images that r being displayed and also the background music. i don't know how to go about it. can anyone help please :confused: (0 Replies)
Discussion started by: madatyou1
0 Replies

3. UNIX for Advanced & Expert Users

Move mouse to disable screensaver?

All XKCD jokes aside, can a feature be added to a bash script to move the mouse every X seconds to prevent the screensaver from activating? As is it, I launch mplayer through a script that sets some preferences (such as -zoom). Can I add something to that script which wiggles the mouse? Relevant... (1 Reply)
Discussion started by: dotancohen
1 Replies

4. Linux

Question about background processes

Hi! First of all, let me warn you I'm quite new to the world of LINUX and Operating Systems understanding, so that's why I pose these newbie and stupid qustions... Anyway, I'm trying to build my own simple shell in C and I'm getting some problems in implementing the background process ('&')... (10 Replies)
Discussion started by: neimaD
10 Replies

5. AIX

Question on background running job

Guys, We use AIX 5.3 at our work place. I only in my team have a strange problem of not able run jobs background. Other colleagues are able to run without any problem. Once I kick off background job using nohup and & command, It immediately stops. The following error I get when I run. ... (2 Replies)
Discussion started by: anandsbr
2 Replies

6. Shell Programming and Scripting

A question about the PID of a background function

Dear all, I'm writing a KornShell script that calls inside it a function in background mode #!/bin/ksh function myfunction { . . .} myfunction |& . . . How can I capture the PID of the function myfunction that runs in background? Thanks in advance :) (2 Replies)
Discussion started by: dariyoosh
2 Replies

7. Solaris

ScreenSaver issue with Solaris 10

I have a Dell Vostro running Solaris 10 x86 and I am trying to get it to activate the screensaver when no one is logged it. However, the screensaver only seems to activate when someone logs in and then the computer locks. How would I go about fixing this problem? Any help yall can offer would be... (3 Replies)
Discussion started by: MajorJRO
3 Replies
CURSES_BACKGROUND(3)					   BSD Library Functions Manual 				      CURSES_BACKGROUND(3)

NAME
curses_background, bkgd, bkgdset, getbkgd, wbkgd, wbkgdset -- curses attribute manipulation routines LIBRARY
Curses Library (libcurses, -lcurses) SYNOPSIS
#include <curses.h> int bkgd(chtype); int bkgdset(chtype); chtype getbkgd(WINDOW *); int wbkgd(chtype); int wbkgdset(chtype); DESCRIPTION
These functions manipulate the background attributes on stdscr or on the specified window. The function wbkgdset(win, ch) sets the background attributes of the specified window win to ch. When the background attributes are set on a window, characters are added to the window with the logical OR of the background attributes and the character's attributes. If both the background attribute and the character attribute contain color, the color of the character attribute is rendered. If the background attribute contains a non-space character, then this character is added where the foreground character is a space character. Note that subwindows created from win inherit the background attributes of win. The function wbkgd(win, ch) sets the background attributes of the specified window win to ch and also sets the rendition of every character position on that window, as if the characters had been newly added to win. The rendition of characters on subwindows of win is also set to ch. The functions bkgdset(ch) and bkgd(ch) are equivalent to wbkgdset(stdscr, ch) and wbkgd(stdscr, ch), respectively. The function getbkgd(win) returns the background attributes for the window win. RETURN VALUES
The functions wbkgdset() and wbkgd() return OK on success and ERR on failure. SEE ALSO
curses_attributes(3), curses_color(3), curses_window(3) STANDARDS
The NetBSD Curses library complies with the X/Open Curses specification, part of the Single Unix Specification. HISTORY
These functions first appeared in NetBSD 1.6. BSD
January 15, 2006 BSD
All times are GMT -4. The time now is 12:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy