tide/lean_theme/configure/choices/show_time.fish

30 lines
726 B
Fish
Raw Normal View History

2020-05-19 02:17:50 +03:00
function show_time
_title 'Show current time?'
_option 1 'No'
_display_prompt fake_lean_time_format ''
_option 2 '24-hour format'
_display_prompt fake_lean_time_format '%T'
_option 3 '12-hour format'
_display_prompt fake_lean_time_format '%r'
_display_restart_and_quit
switch (_menu 'Choice' 1/2/3/r/q)
case 1
set -g fake_lean_time_format ''
_next_choice 'prompt_height'
case 2
set -g fake_lean_time_format '%T'
_next_choice 'prompt_height'
case 3
set -g fake_lean_time_format '%r'
_next_choice 'prompt_height'
case r
_begin
case q
_quit
end
end