9 lines
96 B
Bash
Executable File
9 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
|
|
hour=$(date +%H)
|
|
sunset=16
|
|
|
|
if (( $hour > $sunset)); then
|
|
hyprsunset -t 5000 &
|
|
fi
|