mirror of
https://github.com/Permissionless-Software-Foundation/psf-memo-client.git
synced 2026-09-21 16:52:02 -07:00
26 lines
297 B
Bash
Executable File
26 lines
297 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
terminal_backend_label() {
|
|
echo "current shell"
|
|
}
|
|
|
|
terminal_backend_can_open_sessions() {
|
|
return 1
|
|
}
|
|
|
|
terminal_backend_tracks_windows() {
|
|
return 1
|
|
}
|
|
|
|
terminal_window_exists() {
|
|
return 1
|
|
}
|
|
|
|
terminal_open_session() {
|
|
return 1
|
|
}
|
|
|
|
terminal_close_window() {
|
|
return 0
|
|
}
|