This commit is contained in:
Daylin Morgan 2024-05-20 12:16:17 -05:00
parent 0dfc8c056f
commit 70494b396a
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 0 additions and 32 deletions

View file

@ -1,29 +0,0 @@
msg = $(if tprint,$(call tprint,{a.b_magenta}==>{a.end}{a.bold} $(1){a.end}),@echo '==> $(1)')
lint: ## lint python files
$(call msg,Linting Python Files)
@black $(shell find -type f -name "*.py")
completions: ## generate completion scripts
$(call msg,Generating Completions)
@./lib/completions/update.sh
db d-build: ## build docker image
$(call msg,Building Docker Image)
@DOCKER_BUILDKIT=1 docker build \
--secret id=GITHUB_TOKEN \
$(if DOCKER_ARGS,$(DOCKER_ARGS),)\
-f docker/Dockerfile \
-t dots .
dr d-run: ## run docker image
$(call msg,Running Docker Image)
docker run --rm -it dots
dr-keep:
docker run -it dots
FORCE:
.DEFAULT_GOAL = help
-include .task.cfg.mk

View file

@ -1,5 +1,2 @@
# Dotfile Todo's # Dotfile Todo's
<!-- i.e. something like chezmoi forget --interactive ~/$(chezmoi managed | fzf) -->
- [x] make a command to 'forget' files using fzf as selector
- [x] deal with the abomination that is the ./vscode directory