You are not logged in.
If anyone wants to invert screen color just like on mac.
Install xcalib and use it via Shortcut "W-i" (Openbox > edit rc.xml)
<keybind key="W-i">
<action name="Execute">
<startupnotify>
<enabled>false</enabled>
<name>Invert</name>
</startupnotify>
<command>xcalib -invert -alter</command>
</action>
</keybind>
Offline
Thanks for mentioning `xcalib`. It's got a lot of nice options! I find `-invert` a bit strong. I like the dimming option, `-co`, though. Nice video from way back here: https://www.youtube.com/watch?v=A9xsvntT6i4
Using the Openbox (3.5.2) session of Lubuntu 14.04 LTS but very interested in BL :)
Offline
thanks vasa1; also nice feature I hadn't thought of.
-invert is hard, but great for bright websites like wiki, or bunsenlabs site
Offline
it took me 5 years of using linux to hear about xcalib.
to me, it's one of these apps that immediately make me think: "wow! you can't do that with windows!"
...and of course, i immediately managed to set my contrast to 0, couldn't see anything anymore (not even when switching ttys!) and had to reboot... you can't do that with windows!
Offline
@ohnonot : nice to hear
... I ran into another issue; using BL on a workstation with Dual-Screen setup. When it's using 1x HDMI + 1x DVI cable for connection; i've not figured out how to invert screen colors on both screens.
Just the DVI connected screen does invert colors.
Not sure if 2x DVI will solve this problem. keep you updated...
Last edited by gree (2016-06-08 23:35:47)
Offline
I don't use it to invert (when I was a Mac user never used invert either, unless showing off and trying to impress buddies) but I find it useful to dim contrast on the fly. I use these bash aliases:
alias dim='xcalib -co 75 -a'
alias dimr='xcalib -c'
And this function if I want a different value than 75% which is ok most of the times, but sometimes a different value does it better.
function dimc() { xcalib -co $@ -a ;}
Offline