add tmux
This commit is contained in:
@@ -236,6 +236,7 @@ I have a custom arch image based on the default arch-toolbox image. It offers:
|
||||
- aws cli
|
||||
- ollama (add `export OLLAMA_HOST=my.ollama.host` to your `.zshrc` to use a remote host)
|
||||
- podman (connected automatically to the host machine via the unix socket)
|
||||
- tmux
|
||||
|
||||
#### Using Reese's Arch Toolbox
|
||||
|
||||
@@ -289,3 +290,28 @@ podman image ls \
|
||||
-n --no-trunc --format '{{ .Repository }}:{{ .Tag }}' \
|
||||
| xargs -I {} podman push {}
|
||||
```
|
||||
|
||||
In vscode you can set this as your default build task for homelab and trigger it with
|
||||
`ctrl shift B`
|
||||
|
||||
.vscode/tasks.json
|
||||
|
||||
```json
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build arch-toolbox",
|
||||
"type": "shell",
|
||||
"command": "./infrastructure/graduated/fedora/arch-build.sh",
|
||||
"problemMatcher": [],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user