1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00

Split ansible playbook

This commit is contained in:
Mo 2022-12-22 22:05:58 +01:00
parent 6b480ef1d2
commit 1ba75d8e26

View file

@ -1,29 +1,49 @@
layout {
pane {
command "fish"
args "-c" "~/.scripts/update.py rpm-ostree"
close_on_exit true
pane split_direction="vertical" {
pane {
command "fish"
args "-c" "~/.scripts/update.py rpm-ostree"
close_on_exit true
}
pane focus=true {
command "fish"
args "-c" "~/.scripts/update.py flatpak"
close_on_exit true
}
}
pane focus=true {
command "fish"
args "-c" "~/.scripts/update.py flatpak"
close_on_exit true
pane split_direction="vertical" {
pane {
command "fish"
args "-c" "~/.scripts/update.py cargo"
close_on_exit true
}
pane {
cwd "/home/mo/code/compile/helix"
command "fish"
args "-c" "git pull -r && cargo install --path helix-term"
close_on_exit true
}
}
pane {
command "fish"
args "-c" "~/.scripts/update.py cargo"
close_on_exit true
}
pane {
cwd "/home/mo/code/compile/helix"
command "fish"
args "-c" "git pull -r && cargo install --path helix-term"
close_on_exit true
}
pane {
cwd "/home/mo/servers/ansible"
command "fish"
args "-c" "ansible-playbook playbooks/update.yml; read -P Enter"
close_on_exit true
pane split_direction="vertical" {
pane {
cwd "/home/mo/servers/ansible"
command "fish"
args "-c" "ansible-playbook playbooks/update_dnf.yaml; read -P Enter"
close_on_exit true
}
pane {
cwd "/home/mo/servers/ansible"
command "fish"
args "-c" "ansible-playbook playbooks/update_apt.yaml; read -P Enter"
close_on_exit true
}
pane {
cwd "/home/mo/servers/ansible"
command "fish"
args "-c" "ansible-playbook playbooks/update_local.yaml"
close_on_exit true
}
}
}