mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
20 lines
311 B
Bash
20 lines
311 B
Bash
function set_iterm_profile() {
|
|
echo -e "\033]50;SetProfile=$1\a"
|
|
}
|
|
|
|
function start_dynamic_theme() {
|
|
HOUR=`date +%H`
|
|
if [ $HOUR -ge 8 -a $HOUR -le 17 ]; then
|
|
set_iterm_profile light
|
|
else
|
|
set_iterm_profile dark
|
|
fi
|
|
}
|
|
|
|
start_dynamic_theme &!
|
|
|
|
while true
|
|
do
|
|
start_dynamic_theme
|
|
sleep 600
|
|
done
|