summaryrefslogtreecommitdiff
path: root/mutt/colormutt
blob: 51e9da16404aa0b165b0bad61582b032328ecc6b (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 17 ]; then
    theme=light
else
    theme=dark
fi

echo "/home/urbain/.solarized/mutt-colors-solarized/mutt-colors-solarized-"$theme"-16.muttrc"