"Sorry, we only support 8 and 10-bit displays right now."
-
xflux12 work for me.
Linux Mint 17.1 Rebecca (Ubuntu 14.04 trusty)
Linux-x86_64 AMD FX(tm)-8350 Eight-Core
NVIDIA Driver Version: 384.90
Server Version Number: 11.0
Server Vendor String: The X.Org Foundation
Server Vendor Version: 1.15.1 (11501000)The previous versions don't work with new Nvidia 384.90 driver:
530654 bytes (2010) version:
Sorry, we only support 24/32-bit displays right now.
XF86VidModeGetGammaRampSize returned 2048 entries.706004 bytes (2013) version:
Sorry, we only support 8 and 10-bit displays right now.My eyes no longer bleed.
-
@herf Will this patch be released officially? I'd much rather update from repos than have to maintain a manual installation.
-
@magiceye04 untar and run from console.
-
@justen_m Same issue with Intel i3 6th gen, integrated GPU:
$ ./xflux12 -l 0 -g 0 -r 0 -k 3400 -nofork -------- Welcome to xflux (f.lux for X) This will only work if you're running X on console. Found 1 screen. Display 1 has 0 size Sorry, we only support 8, 10, 11, and 12-bit displays right now.
-
OK, on my old system with Ubuntu16.04 Mate and GTX750ti it works now with version12. :)
On the new system i give it another try because the night mode of Gnome3.24 is not red enough. I hope to find what i had done wrong there. -
@ntc2ntc2 said in "Sorry, we only support 8 and 10-bit displays right now.":
@herf Adding
-r 0
also works for me. I have two displays and both of them get redshifted. I would like to add-r 0
toxfluxgui
[...]Hey, I've got it working with xfluxgui by creating a small wrapper script for xflux.
I´m assuming here that you downloaded xflux11 and saved it on /usr/bin (where the original xflux resides in my Linux Mint).
Move your original /usr/bin/xflux to /usr/bin/xflux.original
Save this script as /usr/bin/xflux
#!/bin/bash
/usr/bin/xflux11 -r 0 $*Now, when you start xfluxgui, it will start the script that, in turn, will start xflux11 and pass all the parameters you have configured in xfluxgui.
Worked like a charm here.
Btw, kudos to the author. I've been using f.lux for more than a year now and I sleep much faster/better after working late on my computer.
-
I am working to the the xflux12 version working under Linux Mint 18.3. Found the original xflux, put xflux12 in the same location, then ran it from console so I could see what happened. Went simple and just gave it my zip code, left everything else default. I believe I am running X, don't remember how to tell (it's been a while since I poked my Linux install). I got the following output, which seems to indicate xflux12 thinks it is working, but then something goes wrong. Now what?
-
@waldyd Same "Display 1 has 0 size" problem for me on Ubuntu 18.04, on an old Thinkpad x230. Tried both of
xflux11
andxflux12
. -
xflux12 works for me with
-r 0
on this setup under Ubuntu 18.04.1 LTS:$ ubuntu-drivers devices == /sys/devices/pci0000:00/0000:00:01.0/0000:07:00.0 == modalias : pci:v000010DEd00001D01sv00001043sd000085F4bc03sc00i00 vendor : NVIDIA Corporation model : GP108 [GeForce GT 1030] driver : nvidia-driver-410 - third-party free driver : nvidia-driver-435 - third-party free driver : nvidia-driver-415 - third-party free driver : nvidia-driver-440 - third-party free recommended driver : nvidia-driver-390 - third-party free driver : xserver-xorg-video-nouveau - distro free builtin $ lspci -s 07:00.0 -knn 07:00.0 VGA compatible controller [0300]: NVIDIA Corporation GP108 [10de:1d01] (rev a1) Subsystem: ASUSTeK Computer Inc. GP108 [GeForce GT 1030] [1043:85f4] Kernel driver in use: nvidia Kernel modules: nvidiafb, nouveau, nvidia_drm, nvidia $ apt policy xserver-xorg-video-nvidia-390 xserver-xorg-video-nvidia-390: Installed: 390.132-0ubuntu0.18.04.1 $ apt policy nvidia-dkms-390 nvidia-dkms-390: Installed: 390.132-0ubuntu0.18.04.1
-
@dsw2222 said in "Sorry, we only support 8 and 10-bit displays right now.":
#!/bin/bash
/usr/bin/xflux11 -r 0 $*you can go further and do this the elegant debian way
- create the script as
/usr/local/bin/xflux
and make it executable - copy the
xflux12
binary as/usr/local/bin/xflux12
and make it executable - run this once:
update-alternatives --install /usr/bin/xflux xflux /usr/local/bin/xflux 100
- create the script as