add more packages

This commit is contained in:
Daylin Morgan 2024-11-25 17:06:46 -06:00
parent b0e961645b
commit 7a0c2a52dc
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 4 additions and 2 deletions

View file

@ -5,7 +5,9 @@ fd
fzf fzf
git-delta git-delta
lazygit lazygit
jujutsu
neovim neovim
python python
ripgrep ripgrep
tmux
zoxide zoxide

View file

@ -8,11 +8,11 @@ if not (
_src.parent.mkdir(exist_ok=True) _src.parent.mkdir(exist_ok=True)
_src.write_text(_r.read().decode()) _src.write_text(_r.read().decode())
from swydd import task, sub, cli, ctx from swydd import task, sub, cli
@task @task
def build(): def build():
"""build the image (forwards positioanl args)""" """build the image (forwards positioanl args)"""
sub("podman build . -t daylinbox " + " ".join(ctx.rest)) sub("podman build . -t daylinbox ", rest=True)
cli("build") cli("build")