-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add support plugin config and permission system on zellij 0.38
- Loading branch information
Showing
12 changed files
with
389 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build zellij-datetime", | ||
"type": "shell", | ||
"command": "cargo build", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared" | ||
} | ||
}, | ||
{ | ||
"label": "Run zellij-datetime", | ||
"dependsOn": ["Build zellij-datetime"], | ||
"type": "shell", | ||
"command": "podman", | ||
"args": [ | ||
"run", | ||
"--name", | ||
"zellij-datetime", | ||
"--env", | ||
"SHELL=/usr/bin/bash", | ||
"-v", | ||
"${workspaceRoot}/../zellij/target/release/:/opt/zellij", | ||
"-v", | ||
"${workspaceRoot}:/opt/zellij-datetime", | ||
"-w", | ||
"/opt/zellij-datetime", | ||
"-it", | ||
"--rm", | ||
"ubuntu:22.04", | ||
"/opt/zellij/zellij", | ||
"-l", | ||
"plugin.kbl" | ||
], | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared" | ||
} | ||
}, | ||
{ | ||
"label": "Stop zellij-datetime", | ||
"type": "shell", | ||
"command": "podman", | ||
"args": [ | ||
"stop", | ||
"zellij-datetime" | ||
], | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "shared" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
[package] | ||
name = "zellij-datetime" | ||
version = "0.16.0" | ||
version = "0.17.0" | ||
authors = ["h1romas4 <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
zellij-tile = "0.37.2" | ||
zellij-tile-utils = "0.37.2" | ||
zellij-tile = "0.38.0" | ||
zellij-tile-utils = "0.38.0" | ||
ansi_term = "^0.12" | ||
chrono-wasi = "^0.4" | ||
kdl = { version = "^4.5" } | ||
linked-hash-map = "^0.5" | ||
csscolorparser = "^0.6" | ||
|
||
|
Oops, something went wrong.