Add script file

This commit is contained in:
dataprolet 2024-05-27 10:37:07 +00:00
parent eed7e098a1
commit fbb9a2c21f
1 changed files with 22 additions and 0 deletions

22
theme-switcher.sh Normal file
View File

@ -0,0 +1,22 @@
#!/bin/bash
# Changes to BreezeDark at 21:30 and to BreezeLight at 6:30.
# Get the current hour and minute
current_hour=$(date +%H)
current_minute=$(date +%M)
# Convert current time to minutes since midnight
current_time=$((10#$current_hour * 60 + 10#$current_minute))
# Define the start times in minutes since midnight
start_command1=$((21 * 60 + 30)) # 21:30 in minutes
end_command1=$((6 * 60 + 30)) # 06:30 in minutes
if (( current_time >= start_command1 || current_time < end_command1 )); then
# Execute command1 if the time is between 21:30 and 06:30
plasma-apply-colorscheme BreezeDark
else
# Execute command2 if the time is between 06:30 and 21:30
plasma-apply-colorscheme BreezeLight
fi