blob: 41bf46d011dbbbff8ceb04211f97d0fb3699cc52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
h=`date +%H`
if [ $h -lt 9 ]; then
theme=dark
elif [ $h -lt 18 ]; then
theme=light
else
theme=dark
fi
echo "/home/urbain/mutt-colors-solarized/mutt-colors-solarized-"$theme"-16.muttrc"
|