diff options
author | David Thompson <dthompson2@worcester.edu> | 2022-12-18 11:35:54 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-01-06 16:00:25 -0500 |
commit | 4c032a6593bd2f9da87801c210351691010154ec (patch) | |
tree | 7ba6cfd4677a31676408ccec0c89e4d52b11318b /scripts | |
parent | 806e19f450497f62237240fe5a7596d521c3a137 (diff) |
Just for fun: Now both host/join programs are graphical.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/edit-garden.in | 6 | ||||
-rwxr-xr-x | scripts/host-garden.in | 6 | ||||
-rwxr-xr-x | scripts/join-garden.in | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/scripts/edit-garden.in b/scripts/edit-garden.in deleted file mode 100755 index f01d312..0000000 --- a/scripts/edit-garden.in +++ /dev/null @@ -1,6 +0,0 @@ -#!@GUILE@ --no-auto-compile --*- scheme -*- -!# -(use-modules (community-garden edit)) - -(apply edit-garden (cdr (command-line))) diff --git a/scripts/host-garden.in b/scripts/host-garden.in new file mode 100755 index 0000000..55e8977 --- /dev/null +++ b/scripts/host-garden.in @@ -0,0 +1,6 @@ +#!@GUILE@ --no-auto-compile +-*- scheme -*- +!# +(use-modules (community-garden host)) + +(apply host-garden (cdr (command-line))) diff --git a/scripts/join-garden.in b/scripts/join-garden.in new file mode 100755 index 0000000..dedc262 --- /dev/null +++ b/scripts/join-garden.in @@ -0,0 +1,6 @@ +#!@GUILE@ --no-auto-compile +-*- scheme -*- +!# +(use-modules (community-garden join)) + +(apply join-garden (cdr (command-line))) |