2019-09-22 19:28:15 +00:00
|
|
|
# `tilde` - manage user-submitted scripts
|
2019-07-29 19:20:14 +00:00
|
|
|
|
|
|
|
forked from [tilde](https://tildegit.org/team/tilde-launcher)
|
2019-09-22 19:03:24 +00:00
|
|
|
adding in updates from [envs.net fork](https://git.envs.net/envs/envs_launcher/)
|
2019-07-29 19:20:14 +00:00
|
|
|
|
|
|
|
```
|
2019-09-22 19:28:15 +00:00
|
|
|
wrapper for user-submitted scripts
|
2019-09-05 23:27:57 +00:00
|
|
|
supports user settings, submission and admin approval
|
2019-07-29 19:20:14 +00:00
|
|
|
|
2019-09-05 23:27:57 +00:00
|
|
|
User Scripts
|
2019-07-29 19:20:14 +00:00
|
|
|
|
2019-09-22 19:03:24 +00:00
|
|
|
usage: tilde [help|list|submit|about|script_name]
|
|
|
|
tilde list - show a list of approved userscripts
|
|
|
|
tilde submit - start the submission flow for your own script
|
|
|
|
tilde about <script_name> - get the description for script_name
|
|
|
|
tilde <script_name> - run script_name with all remaining args are passed to the script
|
2019-07-29 19:20:14 +00:00
|
|
|
```
|
|
|
|
|
2019-09-22 19:03:24 +00:00
|
|
|
approved scripts are placed in /tilde/bin and listed with `tilde list`
|
2019-07-29 19:20:14 +00:00
|
|
|
|
|
|
|
submissions use sendmail to notify an admin.
|
|
|
|
|
2019-09-22 19:03:24 +00:00
|
|
|
admins can use `sudo tilde approve` and `sudo tilde revoke <script_name>`.
|
|
|
|
|