This commit is contained in:
Lukas Wurzinger 2025-06-22 00:11:47 +02:00
commit a8047b79ab
No known key found for this signature in database
9 changed files with 565 additions and 0 deletions

39
example-spec.json Normal file
View file

@ -0,0 +1,39 @@
{
"entries": [
{
"displayName": "Files",
"program": "ls",
"args": [
"-l",
"--human-readable"
]
},
{
"displayName": "Disks",
"program": "df",
"args": [
"--human-readable"
]
},
{
"displayName": "Bogus",
"program": "nothing ever happens",
"args": []
},
{
"displayName": "Error",
"program": "ls",
"args": [
"does/not/exist"
]
},
{
"displayName": "Grep",
"program": "grep",
"args": [
"-o",
"test"
]
}
]
}