initial commit (post-repo scrub)
This commit is contained in:
35
Makefile
Normal file
35
Makefile
Normal file
@@ -0,0 +1,35 @@
|
||||
PYTHON="<python-binary>"
|
||||
BASH=/usr/bin/bash
|
||||
UNAME=$(shell uname)
|
||||
|
||||
ifeq ($(UNAME), Darwin)
|
||||
PYTHON=python3
|
||||
endif
|
||||
|
||||
|
||||
## ------------------ docs ------------------ ##
|
||||
docs-serve:
|
||||
cd docs/_build/html && python -m http.server 9091
|
||||
|
||||
docs-build:
|
||||
make -C docs/ html
|
||||
|
||||
docs-clean:
|
||||
make -C docs/ clean
|
||||
## ------------------------------------------ ##
|
||||
|
||||
## ------------------ sync ------------------ ##
|
||||
sync:
|
||||
$(BASH) autoconf/sync.sh
|
||||
## ------------------------------------------ ##
|
||||
|
||||
## ----------------- themes ----------------- ##
|
||||
gen-tone4:
|
||||
$(PYTHON) autoconf/gen_theme.py -a kitty -p tone4
|
||||
|
||||
set-tone4-light:
|
||||
$(PYTHON) autoconf/set_theme.py -p tone4 -s light -a "*"
|
||||
|
||||
set-tone4-dark:
|
||||
$(PYTHON) autoconf/set_theme.py -p tone4 -s dark -a "*"
|
||||
## ------------------------------------------ ##
|
||||
Reference in New Issue
Block a user