13 lines
		
	
	
		
			241 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			241 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source $OMAKUB_PATH/ascii.sh
 | 
						|
 | 
						|
if [ $# -eq 0 ]; then
 | 
						|
  SUB=$(gum choose "Help" "Theme" "Font" "Install" --height 7 --header "" | tr '[:upper:]' '[:lower:]')
 | 
						|
else
 | 
						|
  SUB=$1
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
[ -n "$SUB" ] && source $OMAKUB_PATH/bin/omakub-$SUB
 |