mirror of
https://github.com/endeavouros-team/eos-bash-shared.git
synced 2026-06-13 01:34:36 +00:00
21 lines
337 B
Bash
Executable File
21 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run a command in a terminal.
|
|
# See also: RunInTerminalEx
|
|
|
|
source /usr/share/endeavouros/scripts/eos-script-lib-yad || {
|
|
echo "Error: cannot source eos-script-lib-yad" >&2
|
|
exit 1
|
|
}
|
|
|
|
export -f eos_yad_terminal
|
|
export -f eos_yad_RunCmdTermBash
|
|
export -f eos_yad
|
|
|
|
Main()
|
|
{
|
|
eos_yad_RunCmdTermBash "$*"
|
|
}
|
|
|
|
Main "$@"
|