blob: a3b64d8f75007af37b1b8d1dfd1cf15a70f27280 (
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/mutt-colors-solarized/mutt-colors-solarized-"$theme"-16.muttrc"
|