-
Notifications
You must be signed in to change notification settings - Fork 22
/
programs.cfg
99 lines (99 loc) · 3.35 KB
/
programs.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
["song"] = {
files = {
["master/song/song.lua"] = "/lib"
},
name = "Song API",
description = "An API to play whole songs using computer.beep",
authors = "Vexatos",
repo = "tree/master/song"
},
["song-examples"] = {
files = {
["master/song/song-example1.lua"] = "/bin",
["master/song/song-example2.lua"] = "/bin"
},
dependencies = {
["song"] = "/"
},
name = "Song API Examples",
description = "Some example songs for the Song API",
authors = "Vexatos",
repo = "tree/master/song"
},
["oppm"] = {
files = {
["master/oppm/oppm.lua"] = "/bin",
["master/oppm/etc/oppm.cfg"] = "//etc",
},
name = "OpenPrograms Package Manager",
description = "A program to browse, download, install and update various useful programs and libraries",
authors = "Vexatos",
note = "If you are running this program on a floppy disk, run 'oppm install oppm' to install this program locally on your main Hard Drive.\n Consider running 'oppm update oppm' to get the latest version of this program.",
repo = "tree/master/oppm"
},
["drama"] = {
files = {
["master/drama/drama.lua"] = "/bin",
},
name = "Drama Generator",
description = "asie's Drama Generator inside OC",
authors = "Vexatos",
note = "Run and have fun!",
repo = "tree/master/drama/drama.lua",
},
["bigreactors-control"] = {
files = {
["master/reactor/bigreactors-control.lua"] = "/bin",
},
name = "BigReactors Control",
description = "A very simple BigReactors Reactor and Turbine control program",
authors = "Vexatos",
note = "Run with -s to make it not print any text to the screen",
repo = "tree/master/reactor/bigreactors-control.lua",
},
["bigreactors-capbank"] = {
files = {
["master/reactor/capbank/bigreactors-control.lua"] = "/bin",
},
name = "BigReactors Control - Capacitor Bank Edition",
description = "Like bigreactors-control. Does not require a Capacitor Bank, will adapt to a connected one dynamically.",
authors = "Vexatos",
note = "Incompatible with bigreactors-control",
repo = "tree/master/reactor/capbank/bigreactors-control.lua",
hidden = true,
},
["drone-control"] = {
files = {
["master/dronecontrol/bin/drone-control.lua"] = "/bin",
["master/dronecontrol/etc/drone-control.cfg"] = "//etc",
["master/dronecontrol/share/bios/drone-control.lua"] = "/share/bios/"
},
name = "Drone Control",
description = "A Client and Drone BIOS to make drones load code to execute from the client.",
authors = "Vexatos",
note = "Requires Wireless Network Cards in the client and all the drones.",
repo = "tree/master/dronecontrol",
hidden = true,
},
["holocol"] = {
files = {
["master/holocol/holocol.lua"] = "/bin"
},
name = "Holocol",
description = "Simple program to change a hologram projector's color via shell",
authors = "Vexatos",
note = "Requires a Hologram Projector.",
repo = "tree/master/holocol/holocol.lua"
},
["asiebin"] = {
files = {
["master/asiebin/asiebin.lua"] = "/bin"
},
name = "asiebin",
description = "Pastebin clone for paste.asie.pl",
authors = "Vexatos",
note = "Requires an Internet Card to run.",
repo = "tree/master/asiebin/asiebin.lua"
},
}