✨ Add subtitle function
This commit is contained in:
parent
4c3929e3c4
commit
ef552867be
1 changed files with 13 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env fish
|
#!/usr/bin/env fish
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
function print_in_color -a text color
|
function print_in_color -a text color
|
||||||
printf '%b' \
|
printf '%b' \
|
||||||
|
@ -21,12 +21,20 @@ function print_in_green -a text
|
||||||
print_in_color $text 2
|
print_in_color $text 2
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function print_in_cyan -a text
|
||||||
|
print_in_color $text 6
|
||||||
|
end
|
||||||
|
|
||||||
function print_in_purple -a text
|
function print_in_purple -a text
|
||||||
print_in_color $text 5
|
print_in_color $text 5
|
||||||
end
|
end
|
||||||
|
|
||||||
function print_title -a text
|
function print_title -a text
|
||||||
print_in_purple "\n • $text\n\n"
|
print_in_purple "\n $text\n\n"
|
||||||
|
end
|
||||||
|
|
||||||
|
function print_subtitle -a text
|
||||||
|
print_in_cyan " $text\n"
|
||||||
end
|
end
|
||||||
|
|
||||||
function print_success -a text
|
function print_success -a text
|
||||||
|
@ -61,7 +69,7 @@ function print_error_stream
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
function show_spinner -a pid cmds msg
|
function show_spinner -a pid cmds msg
|
||||||
set -l frames '/-\|'
|
set -l frames '/-\|'
|
||||||
|
@ -89,7 +97,7 @@ function show_spinner -a pid cmds msg
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
function set_trap -a sig func
|
function set_trap -a sig func
|
||||||
trap -p "$sig" | grep "$func" &> /dev/null \
|
trap -p "$sig" | grep "$func" &> /dev/null \
|
||||||
|
@ -105,7 +113,7 @@ function kill_all_subproccesses
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
||||||
function execute -a cmds msg
|
function execute -a cmds msg
|
||||||
if ! set -q msg
|
if ! set -q msg
|
||||||
|
|
Loading…
Reference in a new issue