This commit is contained in:
Lukas Wurzinger 2025-06-22 00:27:39 +02:00
commit 97ddcea8f3
No known key found for this signature in database
11 changed files with 1283 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"
]
}
]
}