add more packages
This commit is contained in:
parent
b0e961645b
commit
7a0c2a52dc
2 changed files with 4 additions and 2 deletions
|
@ -5,7 +5,9 @@ fd
|
||||||
fzf
|
fzf
|
||||||
git-delta
|
git-delta
|
||||||
lazygit
|
lazygit
|
||||||
|
jujutsu
|
||||||
neovim
|
neovim
|
||||||
python
|
python
|
||||||
ripgrep
|
ripgrep
|
||||||
|
tmux
|
||||||
zoxide
|
zoxide
|
||||||
|
|
4
tasks.py
4
tasks.py
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue