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