diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-17T18·29+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-17T18·29+0000 |
commit | 166aed6e80f902ce232c0f5e9b76eceef69a714b (patch) | |
tree | 80559865bd91e239d9e6dbfb0b57f40b6cd419b8 /configs/.config | |
parent | 862c69590015782c01c93ce68ab493f7f91c9308 (diff) |
Disable redshift's fading animation
I originally passed the options `[ "-o" "-P" ]` to disable redshift's fading animation, but what I wanted originally was the `[ "-r" ]` option.
Diffstat (limited to 'configs/.config')
-rw-r--r-- | configs/.config/nixpkgs/home.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/.config/nixpkgs/home.nix b/configs/.config/nixpkgs/home.nix index 15008bd412fd..2011381ab479 100644 --- a/configs/.config/nixpkgs/home.nix +++ b/configs/.config/nixpkgs/home.nix @@ -198,6 +198,8 @@ in { path = "/usr/bin/redshift"; as = "redshift"; }; + # Disable the fading animation. + extraOptions = [ "-r" ]; }; # Hide the cursor during X sessions after 1 second. |