diff --git a/client/src/pages/tools/linux/InstallSoftware/software.jsx b/client/src/pages/tools/linux/InstallSoftware/software.jsx new file mode 100644 index 0000000..f052553 --- /dev/null +++ b/client/src/pages/tools/linux/InstallSoftware/software.jsx @@ -0,0 +1,14 @@ +import MySpeedImage from "./images/myspeed.webp"; +import {faBox, faFolder} from "@fortawesome/free-solid-svg-icons"; + +export default [ + { + name: "MySpeed", + icon: MySpeedImage, + configuration: [ + {type: "input", id: "folder", text: "Ort", icon: faFolder, value: "/opt/myspeed"}, + {type: "select", id: "environment", text: "Umgebung", icon: faBox, options: ["Stabil", "Entwicklung"], + value: "Stabil"} + ] + } +]; \ No newline at end of file