use vibrant color mode by default

This commit is contained in:
end-4
2024-03-19 19:18:16 +07:00
parent a5f55a6a1e
commit 230ed18851
@@ -14,11 +14,11 @@ materialscheme="tonalspot"
if [ ! -f $colormodefile ]; then
echo "dark" > $colormodefile
echo "opaque" >> $colormodefile
echo "tonalspot" >> $colormodefile
echo "vibrant" >> $colormodefile
elif [[ $(wc -l < $colormodefile) -ne 3 || $(wc -w < $colormodefile) -ne 3 ]]; then
echo "dark" > $colormodefile
echo "opaque" >> $colormodefile
echo "tonalspot" >> $colormodefile
echo "vibrant" >> $colormodefile
else
lightdark=$(sed -n '1p' $colormodefile)
transparency=$(sed -n '2p' $colormodefile)