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

Open browser

This commit is contained in:
Mo 2022-10-03 02:53:24 +02:00
parent cd4b912bad
commit 511c4ab1e1
2 changed files with 20 additions and 2 deletions

View file

@ -52,4 +52,12 @@ tabs:
parts: parts:
- direction: Vertical - direction: Vertical
run: run:
command: { cmd: fish, args: ["-C", "vp advlabdb"] } command:
{
cmd: fish,
args:
[
"-C",
"nohup xdg-open http://localhost:5000 &> /dev/null; vp advlabdb",
],
}

View file

@ -42,7 +42,7 @@ tabs:
args: ["-C", "cd ~/code/hosted/how_to_linux/src && nvim"], args: ["-C", "cd ~/code/hosted/how_to_linux/src && nvim"],
} }
- direction: Vertical - direction: Vertical
name: "run" name: "mdbook"
parts: parts:
- direction: Vertical - direction: Vertical
run: run:
@ -51,3 +51,13 @@ tabs:
cmd: fish, cmd: fish,
args: ["-C", "cd ~/code/hosted/how_to_linux && mdbook serve"], args: ["-C", "cd ~/code/hosted/how_to_linux && mdbook serve"],
} }
- direction: Vertical
name: "test"
parts:
- direction: Vertical
run:
command:
{
cmd: fish,
args: ["-C", "nohup xdg-open http://localhost:3000 &> /dev/null"],
}