aboutsummaryrefslogtreecommitdiff
path: root/.local/share/mode/plug.d/20_export_mode
blob: c82c4e1d5face967221ce3f88b1d10cb2b146a71 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# $mode = "light" | "dark"
if [ "$mode" != 'dark' ] && [ "$mode" != 'light' ] ; then
	pastel format hsl-lightness "$bg" | awk '{ exit($1 > 0.5) }'
	[ $? -eq 0 ] && mode=dark || mode=light
	echo "warn: theme $theme did not define \$mode as \"light\" or \"dark\", guessed $mode" >&2
fi
themevar mode