tide/tide_theme/configure/choices/prompt_connection.fish

30 lines
817 B
Fish
Raw Normal View History

2020-05-19 02:17:50 +03:00
function prompt_connection
_title 'Prompt Connection'
_option 1 'Disconnected'
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_prompt_connection_icon ' '
2020-05-19 02:17:50 +03:00
_option 2 'Dotted'
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_prompt_connection_icon '·'
2020-05-19 02:17:50 +03:00
_option 3 'Solid'
2020-05-19 06:03:25 +03:00
_display_prompt fake_tide_prompt_connection_icon '─'
2020-05-19 02:17:50 +03:00
_display_restart_and_quit
switch (_menu 'Choice' 1/2/3/r/q)
case 1
2020-05-19 06:03:25 +03:00
set -g fake_tide_prompt_connection_icon ' '
2020-05-19 02:17:50 +03:00
_next_choice 'prompt_spacing'
case 2
2020-05-19 06:03:25 +03:00
set -g fake_tide_prompt_connection_icon '·'
2020-05-19 02:17:50 +03:00
_next_choice 'prompt_connection_color'
case 3
2020-05-19 06:03:25 +03:00
set -g fake_tide_prompt_connection_icon '─'
2020-05-19 02:17:50 +03:00
_next_choice 'prompt_connection_color'
case r
_begin
case q
_quit
end
end