как сделал смену в konsole:- создаёшь два профиля day и night с нужными тебе цветами, звуками и тд- создаёшь профиль link, неважно из чего состоит, ставишь его основным- vim theme-switch.sh#!/bin/bash if [ $(date +%H) -ge 20 ]; thencd .local/share/konsole/; ln -fs night.profile link.profileelsecd .local/share/konsole/; ln -fs day.profile link.profilefi - chmod +x theme-switch.sh- далее crontab -e:@reboot ./theme-switch.sh00 20 * * * ./theme-switch.sh