The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    This is the coolest thing you can do with your screen!

    Discussion in 'Alienware' started by funkmasterta, Jan 14, 2013.

  1. funkmasterta

    funkmasterta Notebook Evangelist

    Reputations:
    209
    Messages:
    509
    Likes Received:
    6
    Trophy Points:
    31
    NegativeScreen

    This handy little app lets you make your screen inverted so when you're in bed or in the dark, it will be easier on your eyes and less distracting to the person next to you.

    If you want to read all about why naval and jet fighter instrument displays use the color red more than any other color, read here:

    The Rods and Cones of the Human Eye

    When combined with the Infra-red theme, it makes for a very eye-friendly night mode:

    IMG_20130114_070653.jpg

    Read the readme.txt in the app, there's about 11 different ways it can render a negative screen.
     
  2. sangemaru

    sangemaru Notebook Deity

    Reputations:
    758
    Messages:
    1,551
    Likes Received:
    328
    Trophy Points:
    101
    Oh, cool. I use cloudfire's work on my tablet to get negative display, but I'd been looking for one for the PC as well. Thanks a lot.
    How do I +rep? :D
     
  3. ubcn

    ubcn Newbie

    Reputations:
    0
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    5
    oohhhh thats amazing, i really love it! you can try to modify in negative screen with ctrl+fn+alt i =)
     
  4. KCETech1

    KCETech1 Notebook Prophet

    Reputations:
    2,527
    Messages:
    4,112
    Likes Received:
    449
    Trophy Points:
    151
    Nice find there, I run negative screens alot but using commercial software from one of my video editing suites
     
  5. Bloodroses

    Bloodroses Notebook Evangelist

    Reputations:
    164
    Messages:
    316
    Likes Received:
    13
    Trophy Points:
    31
    That's awesome, I'm gonna play with it now lol.
     
  6. CZroe

    CZroe Notebook Evangelist

    Reputations:
    90
    Messages:
    364
    Likes Received:
    0
    Trophy Points:
    30
  7. funkmasterta

    funkmasterta Notebook Evangelist

    Reputations:
    209
    Messages:
    509
    Likes Received:
    6
    Trophy Points:
    31
    I used AlienAdrenaline to create a Night Mode sequence of actions that activates NegativeScreen via command line to put it directly into inverted red mode and enable the infra-red theme.

    What's cool is that when I end Night Mode (ALT + WINDOWS KEY + H), it remembers the previous keyboard lighting theme.

    I pinned the shortcut to my Start bar and now it's really easy to go into and out of Night Mode. I use it on an almost nightly basis!

    Here's my .conf file that takes the screen directly to inverted red mode:

    Code:
    # comments: if the character '#' is found, the rest of the line is ignored.
    # quotes: allow to place a '#' inside a value. they do not appear in the final result.
    # i.e. blah="hello #1!" will create a parameter blah with a value of: hello #1!
    # To place a quotation mark inside quotes, double it.
    # i.e. blah="hello""" will create a parameter blah with a value of: hello"
    
    #Predefined keys
    # You can use the following modifiers: alt, ctrl, shift, win
    # and a key from http://msdn.microsoft.com/en-us/library/system.windows.forms.keys%28v=vs.71%29.aspx
    # You can either use its textual representation, or its numerical value.
    # WARNING: if the key is not valid, the program will probably crash...
    
    Toggle=win+alt+N
    Exit=win+alt+H
    
    SmoothTransitions=true
    SmoothToggles=true
    
    # in miliseconds
    MainLoopRefreshTime=100
    
    InitialColorEffect="Negative Red"
    
    #Matrices definition
    # The left hand is used as a description, while the right hand is broken down in two parts:
    # - the hot key combination, followed by a new line, (this part is optional)
    # - the matrix definition, with or without new lines between rows.
    # The matrices must have 5 rows and 5 columns,
    # each line between curved brackets,
    # the elements separated by commas.
    # The decimal separator is a dot.
    
    Simple Inversion=win+alt+F1
    { -1,  0,  0,  0,  0 }
    {  0, -1,  0,  0,  0 }
    {  0,  0, -1,  0,  0 }
    {  0,  0,  0,  1,  0 }
    {  1,  1,  1,  0,  1 }
    
    # Theoretical optimal transfomation (but ugly desaturated pure colors due to "overflows"...)
    # Many thanks to Tom MacLeod who gave me the idea for these inversion modes.
    Smart Inversion=win+alt+F2
    {  0.3333333, -0.6666667, -0.6666667,  0.0000000,  0.0000000 }
    { -0.6666667,  0.3333333, -0.6666667,  0.0000000,  0.0000000 }
    { -0.6666667, -0.6666667,  0.3333333,  0.0000000,  0.0000000 }
    {  0.0000000,  0.0000000,  0.0000000,  1.0000000,  0.0000000 }
    {  1.0000000,  1.0000000,  1.0000000,  0.0000000,  1.0000000 }
    
    # High saturation, good pure colors.
    Smart Inversion Alt 1=win+alt+F3
    {  1, -1, -1,  0,  0 }
    { -1,  1, -1,  0,  0 }
    { -1, -1,  1,  0,  0 }
    {  0,  0,  0,  1,  0 }
    {  1,  1,  1,  0,  1 }
    
    # Overall desaturated, yellows and blue plain bad. actually relaxing and very usable.
    Smart Inversion Alt 2=win+alt+F4
    {  0.39, -0.62, -0.62,  0.00,  0.00 }
    { -1.21, -0.22, -1.22,  0.00,  0.00 }
    { -0.16, -0.16,  0.84,  0.00,  0.00 }
    {  0.00,  0.00,  0.00,  1.00,  0.00 }
    {  1.00,  1.00,  1.00,  0.00,  1.00 }
    
    # High saturation. yellows and blues plain bad. actually quite readable.
    Smart Inversion Alt 3=win+alt+F5
    {  1.0895080, -0.9326327, -0.9326330,  0.0000000,  0.0000000 }
    { -1.8177180,  0.1683074, -1.8416920,  0.0000000,  0.0000000 }
    { -0.2445895, -0.2478156,  1.7621850,  0.0000000,  0.0000000 }
    {  0.0000000,  0.0000000,  0.0000000,  1.0000000,  0.0000000 }
    {  1.0000000,  1.0000000,  1.0000000,  0.0000000,  1.0000000 }
    
    # Not so readable, good colors (CMY colors a bit desaturated, still more saturated than normal).
    Smart Inversion Alt 4=win+alt+F6
    {  0.50, -0.78, -0.78,  0.00,  0.00 }
    { -0.56,  0.72, -0.56,  0.00,  0.00 }
    { -0.94, -0.94,  0.34,  0.00,  0.00 }
    {  0.00,  0.00,  0.00,  1.00,  0.00 }
    {  1.00,  1.00,  1.00,  0.00,  1.00 }
    
    Negative Sepia=win+alt+F7
    { -0.393, -0.349, -0.272,  0.000,  0.000 }
    { -0.769, -0.686, -0.534,  0.000,  0.000 }
    { -0.189, -0.168, -0.131,  0.000,  0.000 }
    {  0.000,  0.000,  0.000,  1.000,  0.000 }
    {  1.351,  1.203,  0.937,  0.000,  1.000 }
    
    Negative Grayscale=win+alt+F8
    { -0.3, -0.3, -0.3,  0.0,  0.0 }
    { -0.6, -0.6, -0.6,  0.0,  0.0 }
    { -0.1, -0.1, -0.1,  0.0,  0.0 }
    {  0.0,  0.0,  0.0,  1.0,  0.0 }
    {  1.0,  1.0,  1.0,  0.0,  1.0 }
    
    #Grayscaled
    Negative Red=win+alt+F9
    { -0.3,  0.0,  0.0,  0.0,  0.0 }
    { -0.6,  0.0,  0.0,  0.0,  0.0 }
    { -0.1,  0.0,  0.0,  0.0,  0.0 }
    {  0.0,  0.0,  0.0,  1.0,  0.0 }
    {  1.0,  0.0,  0.0,  0.0,  1.0 }
    
    #Grayscaled
    Red=win+alt+F10
    {  0.3,  0.0,  0.0,  0.0,  0.0 }
    {  0.6,  0.0,  0.0,  0.0,  0.0 }
    {  0.1,  0.0,  0.0,  0.0,  0.0 }
    {  0.0,  0.0,  0.0,  1.0,  0.0 }
    {  0.0,  0.0,  0.0,  0.0,  1.0 }
    
    Grayscale=win+alt+F11
    { 0.3,  0.3,  0.3,  0.0,  0.0 }
    { 0.6,  0.6,  0.6,  0.0,  0.0 }
    { 0.1,  0.1,  0.1,  0.0,  0.0 }
    { 0.0,  0.0,  0.0,  1.0,  0.0 }
    { 0.0,  0.0,  0.0,  0.0,  1.0 }
    
    Just copy and paste that code into a negativescreen.conf text file, be sure to back up your old one!
     
  8. CobraPizza

    CobraPizza Notebook Guru

    Reputations:
    0
    Messages:
    58
    Likes Received:
    0
    Trophy Points:
    15
    This is just what I needed!!