mirror of https://gitlab.com/ceda_ei/wish
17 lines
212 B
Bash
17 lines
212 B
Bash
|
function wish_space_start() {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
function wish_space_end() {
|
||
|
return 1
|
||
|
}
|
||
|
|
||
|
function wish_space_set_colors() {
|
||
|
WISH_SPACE_BG=-1
|
||
|
WISH_SPACE_FG=-1
|
||
|
}
|
||
|
|
||
|
function wish_space_main() {
|
||
|
wish_append -1 -1 " "
|
||
|
}
|