Skip to content

Instantly share code, notes, and snippets.

@adamyordan
Created June 20, 2019 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamyordan/5946b1e431dae569c0db02ee6770e3ef to your computer and use it in GitHub Desktop.
Save adamyordan/5946b1e431dae569c0db02ee6770e3ef to your computer and use it in GitHub Desktop.
Supply your daily platelets intake directly from terminal
function show_art_1() {
echo "
               
                  
                     
             
                
              
                  
               
            
                
                
                    
                       
                      
                        
                       
                 
                  
                 
                    
              
             
               
                    
                  
              
                 
           
"
}
function show_art_2() {
echo "
                 
                    
                     
                
                      
                    
           
               
                 
                 
                    
                  
                 
             
            
             
              
              
             
                 
              
                    
                   
                    
                        
                
                
      
"
}
while true; do
clear
show_art_1
read -n 1 -s -r
clear
show_art_2
sleep 0.1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment