15 lines
258 B
Bash
Executable File
15 lines
258 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
# TODO: Find inspiration from zsh-select's use of the zcurses module.
|
|
# https://github.com/psprint/zsh-select/blob/master/zsh-select
|
|
|
|
build-dir() {
|
|
zmodload zsh/curses && {
|
|
zcurses init
|
|
} always {
|
|
zcurses end
|
|
}
|
|
}
|
|
|
|
build-dir
|