How to change my monitor to black bg / white fg for x86 when I dont use CDE

thanks

Try something like the following shell script:
#!/bin/sh
echo '<ESC>[q' > /dev/console
<ESC> is a single character, the ASCII ESC control character!
To get the ASCII <ESC>  control character into that shell script, you
need to type "Control-V ESC" in the 'vi' editor.
You can try to install such a script as /etc/rc2.d/S20white-on-black
and it'll get executed whenever Solaris boots into multiuser mode.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • How do your turn off the "black and White" setting for the visually impaired?

    How do you turn off the "black and White" setting for the visually impaired?  Also known as the "tripple Click"

    Settings>General>Accessibilty>White on black--> Off

  • How do I change an hp officejet j6400 printer change from color to black and white?  I have a Mac 10.8 OX system

    How do I change an hp officejet j6400 printer change from color to black and white?
    I have a Mac 10.8 OX system

    Hi JasperNM,
    You may access a card within the cart reader by mapping a network drive to access it, then you may transfer the fies to your Mac.
    First locate the printer IP address as following:
    Follow these steps to print a Wireless Network Test Report, the IP address will be listed within that report:
    On the control panel, press the Setup button ( ).
    Press the Right Arrow button ( ) to scroll to Network Setup , and then press the OK button.
    Press the OK button to select Print Network Settings .
    Press the Right Arrow button ( ) to scroll to Wireless Test Report , and then press the OK button. The Wireless Network Test Report prints.
    Now map a network driver by following the steps below:
    Click the Finder icon on your Mac.
    Click the Go menu.
    Click on Connect to Server.
    In the Server Address field enter “smb://ipaddress of the printer” and click on Connect.
    You will be prompted to enter the password. leave it as is and click on Connect.
    The Memory card will be mounted as a disk in the Finder.
    Shlomi

  • How to change entire background to black in Elements 11?

    I have a photo of a red rose - I'm trying to change the entire background to black - how?

    Thanks so much for your quick reply - I've printed off your instructions, I'll give it a shot later today.  Elem 11 is quite a step up from Elem 5 for me - I think I'm in for somewhat of a learning curve.  Thanks again!! Glen...
      From: hatstead
      Sent: Friday, August 16, 2013 12:56 PM
      To: Ermineglen
      Subject: How to change entire background to black in Elements 11?
            Re: How to change entire background to black in Elements 11?
            created by hatstead in Photoshop Elements - View the full discussion

  • How can I print with the black and white cartridge only?

    I am trying to print using the black and white cartridge only because magenta is out of ink but I'm getting the following error message in HP Photosmart C7200 series print dialog:
    The printer is out of ink.
    The following ink cartridges are empty: Magenta. Replace these ink cartridges to resume printing.
    How can I print with the black and white cartridge only?
    Mac OSX 10.7.3
    HP Photosmart C7280 (7200 series)
    This question was solved.
    View Solution.

    I am absolutely disgusted by this; clearly a scam from HP to make more money by selling extra ink cartridges!!  I will make sure to never buy any products from the shoddy rip off merchants at HP ever again!!
    You should be ashamed!!

  • How convert a color pdf to black and white pdf...? new acrobat in creative cloud cs6

    how convert a color pdf to black and white pdf...? new acrobat in creative cloud cs6

    Print Production << where is this in XI...?

  • Love Safari's new look, but on my 17-inch MacBook Pro the font on most pages is partly or all in an insipid light blue. I've tried changing all text to black on white to help my 83-year-old eyes, but no luck so far. Any tips?

    This is my first time using this site, but it's helpful so far. Not sure if I need to retype the wording in the Discussion box above, but will do so just in case.
    Love Safari's new look, but on my 17-inch MacBook Pro the font on most pages is partly or all is an insipid light blue. I've tried changing all text to black on white to help my 83-year-old eyes, but no luck so far. Any tips?
    Ray Dangel
    Broomfield, CO

    The simplest thing to try is a reset.
    With Safari running, click on Safari in the menu bar and select Reset Safari ....
    If that does not work, go to Safari / Preferences / Advanced.
    The selections I have are shown here:

  • How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    HI,
    How to change the status of test cases in Test Plan from Design to Ready using Excel VBA

    Thanks Florin,
    Your piece of code has worked alot, and it was very helpful in changing the Status of the Workitem to "READY" for all the Users fo the workitem.
    Points have been rewarded for your help.
    Process: We have acheived this using the "Work Item Exits", Usng "AFTER_EXECUTION" Method.
    Note: The Exit will be executed if "exit_cancelled"  statement is present/used in the work item method. if not it is not taking to the exit code. I'm unable to find the reason for it. Florin can u please explain this point.
    Please check the link for adding the code in Work Item Exits.
    http://wiki.sdn.sap.com/wiki/display/ABAP/ProgramExitsIn+Workflow
    Please find the Code:
    method IF_SWF_IFS_WORKITEM_EXIT~EVENT_RAISED.
    Get the context of the workitem
      me->wi_context = im_workitem_context.
    After execution of the workitem call the method AFTER_EXECUTION
      if im_event_name eq swrco_event_after_execution.
        me->after_execution( ).
      endif.
    endmethod.
    METHOD AFTER_EXECUTION.
    This method acts as the Event Handler for SWRCO_EVENT_AFTER_EXECUTION
      DATA: LCL_L_WID TYPE SWW_WIID,
            L_STATUS TYPE SWR_WISTAT-STATUS,
            L_NEW_STATUS  TYPE SWR_WISTAT,
            L_SWR_MESSAG  TYPE STANDARD TABLE OF SWR_MESSAG,
            L_SWR_MSTRUC  TYPE STANDARD TABLE OF SWR_MSTRUC.
    Get work item
      CALL METHOD WI_CONTEXT->GET_WORKITEM_ID
        RECEIVING
          RE_WORKITEM = LCL_L_WID.
      L_STATUS = 'READY'.
      CALL FUNCTION 'SAP_WAPI_SET_WORKITEM_STATUS'
        EXPORTING
          WORKITEM_ID    = LCL_L_WID
          STATUS         = L_STATUS
          USER           = SY-UNAME
          LANGUAGE       = SY-LANGU
          DO_COMMIT      = 'X'
        IMPORTING
          NEW_STATUS     = L_NEW_STATUS
         RETURN_CODE    = SY-SUBRC
        TABLES
          MESSAGE_LINES  = L_SWR_MESSAG
          MESSAGE_STRUCT = L_SWR_MSTRUC.
      IF SY-SUBRC EQ 0.
      ENDIF.
    ENDMETHOD.
    Thank You Once Again,
    Ajay Kumar Chippa

  • I like the mail feature with one exception; I cannot figure out how to change the font size of incoming mail permanently.  And, when answering an email I have to highlight the first few words and zoom it so I can see what I am writing.  what am I missing?

    I like the mail feature with one exception; I cannot figure out how to change the font size of incoming mail permanently.  And, when answering an email I have to highlight the first few words and zoom it so I can see what I am writing.  what am I missing?

    You can type the email using what you set in preferences and then highlight the text and use command - minus sign (or command - + for larger) to reduce the size of the text.
    You can also type command - T and a window will appear allowing you to select fonts/sizes/color/ background highlight.
    The above works in Notes also. I haven't tried to do this in any other Apple application.
    For incoming emails, you can use the above to reduce font size, but I don't know of a way to permanently set the incoming font size to a default.

  • I hired a commercial artist to create a color image for the cover of a self published book. I want a black and white image for the inside. The commercial artist has not responded to this request. How do I determine the format of the color image, I'm guess

    I hired a commercial artist to create a color image for the cover of a self published book. I want a black and white image for the inside. The commercial artist has not responded to this request. How do I determine the format of the color image, I'm guessing it's Illustrator's formatting but I don't know. How can I find out if Illustrator will open the file and allow alterations? The image opens only in Apple's Pages software?

    rons,
    It seems that all you have is a raster image, presumable PNG24 or JPEG, in RGB.
    It may have been created as raster artwork in Photoshop, or it may have been created as vector artwork with the help of Illy, or as a mixture of vector and raster artwork in either application, or both combined.
    If you just need to have a raster representation in black and white based on the current colour image, you may try this, in a new RGB document (View>Smart Guides are your friends):
    1) File>Place the image (you may tick Link or untick and have it embedded);
    2) Create a rectangle with black fill (R = G = B = 0), at least as large as the image, and place it behind the image (you may ClickDrag with the Rectangle Tool between opposite corners, then Ctrl/Cmd+X+B);
    3) Select all and in the Transparnecy palette flyout click Make Opacity Mask with both Clip and Invert Mask ticked.

  • Sporatic changing of screen from black of white to white on black

    Lately when I'm reading My books the page will sporadically change from the normal black on white to white on black.  This auto swiching sometimes lasts from a few seconds to a few minutes. Somes the change will last a 1/2 hour or more.  I've check my Assessability settings and everything is turned off.  This never happened before the latest upgrade.  What is causing this?  I'm concerned my Ipad May be biting the dust.

    There is a setting in the iBooks app itself that can control that. With a book open, tap the AA icon in the upper right and there is a setting for Auto-Night theme. Try toggling that on and off. There is also a white and black setting above that Auto-Night Theme setting.

  • How to change nat type 3 to nat type 2 for Plastation 4?

    how to change nat type 3 to nat type 2 for adaptation 4? i am havng a complicated time with this im'm just trying to play online and been at it fotr 3 days i have tried about everuyhing n portforwarding.com i have a Cisco Linksys E1000

    Hi ceasar14. I actually found some steps (from a source) that worked for me. I'm not sure if it will work for you. Here are the steps:
    1. Get the MAC address of your PS3. To find your MAC address simply go to
    Settings > System Settings > System Information
    2. Assign a static IP address on your PS3.
    3. Access your router's user interface to open a few ports. 
    4. Under Applications and Gaming > Port Range Forwarding, open the following ports:
    TCP: 80, 443, 5223
    UDP: 3478, 3479, 3658
    5. Once this is done, powercycle your PS3 and the router.
    6. Run a connection test and check if it is now on NAT2.
    Good luck.

  • How to change "home" address on IPhone 5s map app for navigation purposes

    How to change "home" address on IPhone 5s map app for navigation purposes

    OK I tried that.  I have two apps that need updating and it STILL shows the old Apple ID from the App store.  I even tried logging off iTunes and powering off the phone, then powering it back on and logging in.  Still shows the OLD Apple ID in the app store.  The correct one is showing in the Settings/iTunes.  Any other thoughts?

  • Black and White Preview for all images Quick and Easy can it be done?

    Before I switched to Mac, I used a google program to do my iphoto/aperture like editing called Picasa. Picasa allowed me to change my view to black and white so that all my images looked black and white until I changed my view back. This was GREAT for letting me look at a wedding or a group of images and quickly scan for the ones that looked spectacular in black and white as apposed to color.
    I have been desperately trying to find a setting in Aperture that will allow me to do that so that I can get a super quick preview of everything and mark the ones that I want to really spend time converting to black and white.
    Does anyone know how to do this? I would almost be willing to change my monitor settings to greyscale temporarily if that is even possible.

    What I do is this:
    In the View Menu set Proofing Profile to Gray Tone.
    Then anytime you want to see things in B&W, hit ShiftOptP
    (Pictures are only B&W in Viewer only mode--large or full screen. But you can use the arrow keys to move through a whole album)

  • Black and white photos for an iPhoto Book

    I've scanned many old black and white photos into iPhoto and would like to create books with them, but I read that iPhoto will not work with black and white photos for books, only color photos. Is that true and are there any suggestions for how to create a book using them? Thanks.

    There is a bug affecting PPC Macs with iPhoto 6.0.5 and QuickTime 7.1.3 that causes it to crash with photos that have no color profile attatched. In addition, iPhoto 6 does not work well with Grayscale. So check these scans to see if they have no color profile or if the profile is grayscale. If so, you'll need to convert them to sRGB. They'll still be black & white, but they'll have a color profile that iPhoto 6 will accept.
    Old Toad created an Automator application to embed the sRGB profile into your photos. Go to his Toad's Cellar and download the "Embed wRGB Color Profile 2" App. In Finder go in your Originals folder, then drop a roll folder containing these photos onto the app.
    http://homepage.mac.com/WebObjects/FileSharing.woa/wa/default?user=toad.hall&tem platefn=FileSharing7.html&xmlfn=TKDocument.7.xml&sitefn=RootSite.xml&aff=consume r&cty=US&lang=en#
    Before doing anything, you might want to try inserting some of those scans into a book template and see what happens. To see how a book will print when you order it from Apple, choose Print when you are viewing the book. Allow it to assemble the file. In the Print Dialog box, click the PDF button and select Save PDF from the drop-down menu. Minimize the iPhoto window to find a little box asking you to select a location for the saved PDF. [If you don't go looking for this window you'll be stuck waiting indefinitely.] View the PDF and see how those black & white scans look.

Maybe you are looking for