29 lines
		
	
	
		
			520 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			520 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# This script was made by `goferito` on Github.
 | 
						|
# Some cleanup by Luke.
 | 
						|
 | 
						|
[ -z "$1" ] && echo "No direction provided" && exit 1
 | 
						|
distanceStr="2 px or 2 ppt"
 | 
						|
 | 
						|
moveChoice() {
 | 
						|
  i3-msg resize "$1" "$2" "$distanceStr" | grep '"success":true' || \
 | 
						|
    i3-msg resize "$3" "$4" "$distanceStr"
 | 
						|
}
 | 
						|
 | 
						|
case $1 in
 | 
						|
  up)
 | 
						|
    moveChoice grow up shrink down
 | 
						|
    ;;
 | 
						|
  down)
 | 
						|
    moveChoice shrink up grow down
 | 
						|
    ;;
 | 
						|
  left)
 | 
						|
    moveChoice shrink right grow left
 | 
						|
    ;;
 | 
						|
  right)
 | 
						|
    moveChoice grow right shrink left
 | 
						|
    ;;
 | 
						|
esac
 | 
						|
 |