f.lux

    f.lux forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. f.lux support
    3. Linux
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • Fredo_p

      Installing f.lux on Ubuntu via Terminal
      • Fredo_p

      7
      1
      Votes
      7
      Posts
      51397
      Views

      J

      Have installed the application on my desktop, but whenever I start it with

      $xflux -l 37.xx -g -2.xx

      my desktop changes into an art studio and I can't read it anymore, quite colorful.

      Not compatible with Lubuntu 18.04? What is going wrong?

    • L

      Please Help me to install in Tails
      • laskar

      1
      0
      Votes
      1
      Posts
      89
      Views

      No one has replied

    • F

      Like flux/windows night mode, color temperature apps/settings exist.
      • fujitora19

      1
      0
      Votes
      1
      Posts
      260
      Views

      No one has replied

    • F

      This topic is deleted!
      • Fuffi

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • L

      errors when installing f.lux Linux Manjaro
      • leha862

      1
      0
      Votes
      1
      Posts
      257
      Views

      No one has replied

    • Y

      F.lux not working on Ubuntu 20.10
      • yuria

      1
      0
      Votes
      1
      Posts
      253
      Views

      No one has replied

    • E

      source code of the f.lux software
      • elemoult

      1
      0
      Votes
      1
      Posts
      233
      Views

      No one has replied

    • S

      adjust via webcam
      • spectre

      1
      0
      Votes
      1
      Posts
      141
      Views

      No one has replied

    • S

      For a day sleeper...?
      • smallhagrid

      1
      0
      Votes
      1
      Posts
      172
      Views

      No one has replied

    • B

      How do I install xflux in Ubuntu 20.04?
      • bar_fabrizio

      6
      1
      Votes
      6
      Posts
      6162
      Views

      M

      On Ubuntu, f.lux does not always seem to work too well. You can always try redshift-gtk otherwise

    • D

      Unable to use f.lux with new video card (Linux Xubuntu)
      • dgetsman

      2
      0
      Votes
      2
      Posts
      297
      Views

      D

      What error are you getting? Maybe this?

      https://forum.justgetflux.com/topic/2373/sorry-we-only-support-8-and-10-bit-displays-right-now

    • EilloNitsua

      xflux Linux - How do I keep flux on ALL the time?
      • EilloNitsua

      26
      5
      Votes
      26
      Posts
      46524
      Views

      J

      here is how to do it...

      cat timer.cc

      #include <time.h> struct tm *gmtime_r(const time_t *timep, struct tm *result) { result-> tm_sec = 0; /* seconds */ result-> tm_min = 2; /* minutes */ result-> tm_hour = 12; /* hours */ result-> tm_mday = 21; /* day of the month */ result-> tm_mon = 12; /* month */ result-> tm_year = 2020; /* year */ result-> tm_wday = 3; /* day of the week */ result-> tm_yday = 355; /* day in the year */ result-> tm_isdst = 0; /* daylight saving time */ return result; }

      create this file (note the contents for date/time are constantly set for Sydney summer solstice night time)

      gcc -shared -o libtimemachine.so -fPIC timer.cc

      this compiles a shared library that mimics the gmtime_r function (which is used by f.lux and hardcodes it to a set time - change yours to a suitable time based upon your timezone)

      LD_PRELOAD=./libtimemachine.so xflux -k 2000 -l 1 -nofork

    • Q

      This topic is deleted!
      • q92helea

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • R

      The version for linux works, but is very limited
      • rebsoli

      1
      0
      Votes
      1
      Posts
      286
      Views

      No one has replied

    • P

      "Sorry, we only support 8 and 10-bit displays right now."
      • prmts

      62
      1
      Votes
      62
      Posts
      77068
      Views

      G

      @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
    • A

      [Ubuntu] f.lux only work started in 17:xx PM or greater ?
      • asharifauzan

      1
      0
      Votes
      1
      Posts
      229
      Views

      No one has replied

    • P

      Flux on Raspbian
      • Psykenthrope

      2
      0
      Votes
      2
      Posts
      604
      Views

      L

      https://github.com/xflux-gui/fluxgui/issues/127#issuecomment-614965305

      Please add support for Arm architecture.
      Thanks

    • R

      Constant flickering from yellow to white on Ubuntu
      • Rauko7

      2
      0
      Votes
      2
      Posts
      645
      Views

      G

      This happens to me, when multiple f.lux sessions are running in the background at the same time. I use this script, to terminate them all:

      #!/bin/bash killall xflux; while true; do allxflux=$(pidof xflux); wtsp=" "; tmpxflux=${allxflux%%"$wtsp"*}; allxflux=${allxflux#*"$wtsp"}; case "$allxflux" in *" "*) kill -9 "$tmpxflux"; continue; ;; *) kill -9 "$tmpxflux"; break; ;; esac; done; exit 0;

      The script above terminates all f.lux sessions based on their PIDs.
      After that, you can start a new f.lux session.

      Hope that this can help you! :)

    • G

      This topic is deleted!
      • george_k23

      1
      0
      Votes
      1
      Posts
      209
      Views

      No one has replied

    • G

      This topic is deleted!
      • george_k23

      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    Copyright © 2014 NodeBB Forums | Contributors