mirror of
https://github.com/IlanCosman/tide.git
synced 2024-11-15 01:00:35 +03:00
79 lines
1.9 KiB
Fish
79 lines
1.9 KiB
Fish
function tide_configure
|
|
if test $COLUMNS -lt 55 || test $LINES -lt 21
|
|
printf '%s\n' 'Terminal size too small; must be at least 55 x 21'
|
|
return 1
|
|
end
|
|
|
|
set -g fake_columns $COLUMNS
|
|
if test $fake_columns -gt 90
|
|
set -g fake_columns 90
|
|
end
|
|
set -g fake_lines $LINES
|
|
|
|
for fn in $_tide_dir/configure/functions/*
|
|
source "$fn"
|
|
end
|
|
for promptItem in $_tide_dir/configure/prompt_items/*
|
|
source "$promptItem"
|
|
end
|
|
|
|
_next_choice 'all/style'
|
|
end
|
|
|
|
function _next_choice -a nextChoice
|
|
source "$_tide_dir/configure/choices/$nextChoice.fish"
|
|
set -l cmd (string split '/' $nextChoice)[2]
|
|
$cmd
|
|
end
|
|
|
|
function _menu -a question options
|
|
set -l optionList (string split '/' $options)
|
|
set -l bold (set_color -o)
|
|
set -l norm (set_color normal)
|
|
|
|
while true
|
|
read -P $bold"$question [$options] "$norm input
|
|
|
|
if contains $input $optionList
|
|
printf '%s\n' $input
|
|
break
|
|
end
|
|
end
|
|
end
|
|
|
|
function _title -a text
|
|
clear
|
|
set -l midCols (math -s0 $fake_columns/2)
|
|
set -l midTitle (math -s0 (string length $text)/2)
|
|
|
|
_tide_cursor_right (math $midCols-$midTitle)
|
|
set_color -o
|
|
printf '%s\n' $text
|
|
set_color normal
|
|
end
|
|
|
|
function _option -a symbol text
|
|
set_color -o
|
|
printf '%s\n' "($symbol) $text"
|
|
set_color normal
|
|
end
|
|
|
|
function _display_prompt -a var_name var_value
|
|
if test -n "$var_name"
|
|
set -g $var_name $var_value
|
|
end
|
|
fake_prompt
|
|
printf '\n\n'
|
|
end
|
|
|
|
function _display_restart_and_quit
|
|
printf '%s\n' '(r) Restart from the beginning'
|
|
printf '%s\n\n' '(q) Quit and do nothing'
|
|
end
|
|
|
|
function _quit --on-signal INT
|
|
clear
|
|
source "$__fish_config_dir/functions/fish_prompt.fish"
|
|
source "$__fish_config_dir/functions/_tide_left_prompt.fish"
|
|
source "$__fish_config_dir/functions/_tide_right_prompt.fish"
|
|
end |