@@ -682,6 +682,13 @@ select_font() {
682
682
FIG_TEXT=" Journal"
683
683
fi
684
684
;;
685
+ Kitty)
686
+ if [ " ${goBig} " ]; then
687
+ FIG_TEXT=" Kitty"
688
+ else
689
+ FIG_TEXT=" Kitty"
690
+ fi
691
+ ;;
685
692
MusicPlayer)
686
693
if [ " ${goBig} " ]; then
687
694
FIG_TEXT=" MusicPlayerPlus"
@@ -2774,6 +2781,7 @@ show_animation_menu() {
2774
2781
options+=(" Neovim Menu [N]" )
2775
2782
}
2776
2783
}
2784
+ [ " ${have_kc} " ] && options+=(" Kitty Control Menu [K]" )
2777
2785
[ " ${have_mpplus} " ] && options+=(" MusicPlayerPlus Menu [M]" )
2778
2786
[ " ${have_roon} " ] && options+=(" RoonCommandLine Menu [R]" )
2779
2787
[ " ${have_showascii} " ] && options+=(" Ascii Art Menu [A]" )
@@ -3019,6 +3027,16 @@ show_animation_menu() {
3019
3027
skip_it_so=1
3020
3028
break
3021
3029
;;
3030
+ " Kitty Control" * ,* | * ," Kitty Control" * | " K" ,* | * ," K" )
3031
+ [ " ${use_figlet} " ] && {
3032
+ select_font Kitty
3033
+ show_figlet
3034
+ }
3035
+ kitty-control
3036
+ tput clear
3037
+ skip_it_so=1
3038
+ break
3039
+ ;;
3022
3040
" MusicPlayerPlus" * ,* | * ," MusicPlayerPlus" * | " M" ,* | * ," M" )
3023
3041
[ " ${use_figlet} " ] && {
3024
3042
select_font MusicPlayer
@@ -3422,6 +3440,7 @@ show_main_menu() {
3422
3440
options+=(" Neovim Menu [N]" )
3423
3441
}
3424
3442
}
3443
+ [ " ${have_kc} " ] && options+=(" Kitty Control Menu [K]" )
3425
3444
[ " ${have_mpplus} " ] && options+=(" MusicPlayerPlus Menu [M]" )
3426
3445
[ " ${have_roon} " ] && options+=(" RoonCommandLine Menu [R]" )
3427
3446
options+=(" Quit [q]" )
@@ -3596,6 +3615,16 @@ show_main_menu() {
3596
3615
skip_it_so=1
3597
3616
break
3598
3617
;;
3618
+ " Kitty Control" * ,* | * ," Kitty Control" * | " K" ,* | * ," K" )
3619
+ [ " ${use_figlet} " ] && {
3620
+ select_font Kitty
3621
+ show_figlet
3622
+ }
3623
+ kitty-control
3624
+ tput clear
3625
+ skip_it_so=1
3626
+ break
3627
+ ;;
3599
3628
" MusicPlayerPlus" * ,* | * ," MusicPlayerPlus" * | " M" ,* | * ," M" )
3600
3629
[ " ${use_figlet} " ] && {
3601
3630
select_font MusicPlayer
@@ -4122,6 +4151,7 @@ have_lolcat=$(type -p lolcat)
4122
4151
use_lol=" NO "
4123
4152
}
4124
4153
have_rich=$( type -p rich)
4154
+ have_kc=$( type -p kitty-control)
4125
4155
have_roon=$( type -p roon)
4126
4156
have_speed=$( type -p speedtest-cli)
4127
4157
have_splash=$( type -p asciisplash)
0 commit comments