Update screen temperature script

This commit is contained in:
2023-11-21 13:57:28 +01:00
parent 9ab374f38e
commit fcb1469297
2 changed files with 5 additions and 2 deletions

View File

@@ -43,6 +43,9 @@ try:
subprocess.run(["redshift", "-O", str(new_temperature), "-P"], check=True)
with open('/tmp/temperature', 'w') as temp_file:
temp_file.write(str(new_temperature) + '\n')
# Send notification
subprocess.run(
["notify-send", str(new_temperature) + "K"])
except subprocess.CalledProcessError:
print("Error: could not set screen temperature.")
sys.exit(1)