mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-11-04 01:16:35 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
file="$HOME/Personal/Notes/note-$(date +%Y-%m-%d).md"
 | 
						|
 | 
						|
if [ ! -f "$file" ]; then
 | 
						|
    echo "# Notes for $(date +%Y-%m-%d)" > "$file"
 | 
						|
fi
 | 
						|
 | 
						|
lvim -c "norm Go" \
 | 
						|
    -c "norm Go## $(date +%H:%M)" \
 | 
						|
    -c "norm G2o" \
 | 
						|
    -c "norm zz" \
 | 
						|
    -c "startinsert" "$file"
 |