A Line By Line Explanation of The Bash Script For Scheduling Night Mode For A Better Screen Viewing
Introduction
In my previous post on here, I wrote a bash script for scheduling night mode on devices for better viewing. Now, I will be explaining line by line what the script entails.
#!/bin/bash
CONFIG_FILE="$HOME/.nightmode.conf"
TEMP_DAY=6500 ...