mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-01-10 19:52:57 +00:00
12 lines
361 B
JavaScript
12 lines
361 B
JavaScript
import SearchItem from "../search-item"
|
|
|
|
function ExecuteCommandButton({command, terminal = false}) {
|
|
SearchItem({
|
|
materialIconName: `${terminal ? "terminal" : "settings_b_roll"}`,
|
|
name: `Run command`,
|
|
actionName: `Execute ${terminal ? "in terminal" : ""}`,
|
|
content: `${command}`,
|
|
onActivate: () => execAndClose(command, terminal),
|
|
})
|
|
}
|