Redshift가 예상대로 작동하지 않습니다

Redshift가 예상대로 작동하지 않습니다

저는 Kali Linux를 사용하고 있으며 청색광을 필터링하고 있습니다. 다음 명령을 사용합니다.

redshift -O 3500

그러나 약 1분 후에 화면이 다시 기본 상태로 돌아왔습니다(더 이상 블루라이트를 필터링하지 않음). 낮에는 작동하지 않기 때문인가요 redshift?(그렇다면 어떻게 하면 낮에 작동하게 할 수 있나요?) 아니면 다른 문제인가요?

답변1

사용자 프로필은 다음 위치에 있어야 합니다.

~/.config/redshift/redshift.conf

존재하지 않는 경우 새로 생성하거나 원하는 대로 편집하세요.


내가 작성한 추가 메모를 포함하여 내 GPS의 편집된 예:

[redshift]

; Global settings file for Redshift application.

; Location provider for solar elevation.
; ------------------------------------------------------------------------------
; Set the location-provider: 'geoclue2' or 'manual'.
; The actual provider settings are in a separate section.
location-provider=manual


; Smooth fade between temperatures when Redshift starts and stops.
; ------------------------------------------------------------------------------
; 0 causes an immediate change between screen temperatures.
; 1 gradually applies the new screen temperature over a couple of seconds.
fade=0


; Solar elevation thresholds.
; ------------------------------------------------------------------------------
; By default, Redshift will use the current elevation of the sun to determine
; whether it is daytime, night or in transition (dawn / dusk). When the sun is
; above the degrees specified with elevation-high it is considered daytime and
; below elevation-low it is considered night.
;elevation-high=3
;elevation-low=-6


; Day and night screen temperatures.
; ------------------------------------------------------------------------------
; Default temperatures in K (Kelvin):
; Day time   : 6500
; Night time : 4500
temp-day=7500
temp-night=5500


; Custom dawn / dusk times.
; ------------------------------------------------------------------------------
; Instead of using the solar elevation, the time intervals of dawn and dusk can
; be specified manually. The times must be specified as HH:MM in 24-hour format.
;dawn-time=05:00
;dusk-time=16:00


; The adjustment method: 'randr', 'vidmode'.
; ------------------------------------------------------------------------------
; This has changed since the 1.12 version in favor of randr,
; formerly vidmode has mostly been used from what I read.
adjustment-method=randr


; Manual GPS of the location for solar elevation.
; ------------------------------------------------------------------------------
; Standard longitude and latitude coordinates.
[manual]
lat=xx.8111306
lon=yy.1414300


; Adjustment method settings.
; ------------------------------------------------------------------------------
; Note that the numbering starts from 0, so 1 is actually the second screen.
; This actually works for all monitors, needs clarification!
[randr]
screen=0

-v그런 다음 문제를 디버깅하려면 셸에서 상세 모드( )로 실행하는 것이 좋습니다 .

답변2

  1. 다음 명령을 사용하여 필수 패키지를 설치합니다.

    sudo apt 설치 redshift geoclue-2.0

  2. 해당 위치의 위도/경도를 찾으려면 다음 URL을 사용하세요.

    https://geotargetly.com/my-ip-geolocation

  3. Redshift 사용법: redshift-gtk -l 위도: 경도 -t 낮 온도: 밤 온도

  4. 터미널을 열고 다음 명령을 입력하여 위도(요구 사항에 따라 경도 및 온도)를 변경합니다. 전임자:

    sudo redshift-gtk -l 266.727101:108.395286 -t 4000:3400

  5. 터미널 닫기

관련 정보