blob: ddaa7ba6ff62667dfaf0fc5df08db0c4b22e3426 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
if [ "$COLORSCHEME" = "light" ]; then
theme=light
elif [ "$COLORSCHEME" = "dark" ]; then
theme=dark
else
echo $COLORSCHEME
fi
echo "/home/urbain/github/mutt-colors-solarized/mutt-colors-solarized-"$theme"-16.muttrc"
|