17 lines
		
	
	
		
			750 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			750 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
[ -z "$1" ] && exit # If $1 is left, hovers in the bottom left, if right, the bottom right
 | 
						|
current=$(xdotool getwindowfocus)
 | 
						|
newwidth=$(( 2 * $(xdotool getdisplaygeometry | awk '{print $1}') / 5))
 | 
						|
newheight=$(( 2 * $(xdotool getdisplaygeometry | awk '{print $2}') / 5))
 | 
						|
borderwidth=1
 | 
						|
 | 
						|
case "$1" in
 | 
						|
	left)	horizontal=borderwidth;
 | 
						|
		vertical=$(($(xdotool getdisplaygeometry | awk '{print $2}') - newheight - 2 * borderwidth )) ;;
 | 
						|
	right)	horizontal=$(($(xdotool getdisplaygeometry | awk '{print $1}') - newwidth - 2 * borderwidth ))
 | 
						|
		vertical=$(($(xdotool getdisplaygeometry | awk '{print $2}') - newheight  - 2 * borderwidth )) ;;
 | 
						|
esac
 | 
						|
xdotool windowsize "$current" $newwidth $newheight
 | 
						|
xdotool windowmove "$current" $horizontal $vertical
 |