A script that can switch between light and dark themes either automatically based on time or manually via command-line arguments. It switches to dark theme at night (between 21:00 and 6:00) and light/default by day. Works in ubuntu 24.04.03
nano ~/.local/bin/theme_switcher.sh
chmod +x ~/.local/bin/theme_switcher.sh
chrontab -e
* * * * * ~/.local/bin/theme_switcher.sh
./theme_switcher.sh --dark
./theme_switcher.sh --light
# Automatic mode
./theme_switcher.sh
This script was created by mojoaxel with the help of Claude Sonnet 3.5 and is licensed under CC0 - No Rights Reserved.