aboutsummaryrefslogtreecommitdiff
path: root/.local/share/mode/plug.d/20_export_mode
blob: 78432b6ff94340260d6d1a2c4cefdef47a2e5710 (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
export mode