summary refs log tree commit diff
path: root/.local/share/darkman/mako.sh
blob: dd502424445dd09ec1098399f052471d4707303a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -eu

case "$1" in
dark)
	echo "include=~/.config/mako/colors-dark" > ~/.config/mako/colors
	makoctl reload
	;;
light)
	echo "include=~/.config/mako/colors-light" > ~/.config/mako/colors
	makoctl reload
	;;
default) exit 1 ;;
esac