Add script by sunrise/sunset
This commit is contained in:
parent
28898ff984
commit
0069c45695
|
@ -0,0 +1,34 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Get your coordinates here: https://www.latlong.net/
|
||||
lat=52.520008
|
||||
long=13.404954
|
||||
|
||||
# Get the times for sunrise and sunset
|
||||
sunrise=$(curl "https://api.sunrisesunset.io/json?lat=$lat&lng=$long" |jq -r '.results | .sunrise')
|
||||
sunset=$(curl "https://api.sunrisesunset.io/json?lat=$lat&lng=$long" |jq -r '.results | .sunset')
|
||||
|
||||
# Convert them into hours and minutes
|
||||
hour_sunrise=$(date -d "$sunrise" +"%H")
|
||||
min_sunrise=$(date -d "$sunrise" +"%M")
|
||||
hour_sunset=$(date -d "$sunset" +"%H")
|
||||
min_sunset=$(date -d "$sunset" +"%M")
|
||||
|
||||
# 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=$(($hour_sunset * 60 + $min_sunset))
|
||||
end_command1=$(($hour_sunrise * 60 + $min_sunrise))
|
||||
|
||||
if (( current_time >= start_command1 || current_time < end_command1 )); then
|
||||
# Execute command1 if the time is between sunset and sunrise
|
||||
plasma-apply-colorscheme BreezeDark
|
||||
else
|
||||
# Execute command2 if the time is between sunrise and sunset
|
||||
plasma-apply-colorscheme BreezeLight
|
||||
fi
|
Loading…
Reference in New Issue