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