11 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			160 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
swayidlectl() {
 | 
						|
  systemctl --user $1 swayidle.service
 | 
						|
}
 | 
						|
 | 
						|
if swayidlectl status > /dev/null; then
 | 
						|
    swayidlectl stop
 | 
						|
else
 | 
						|
    swayidlectl start
 | 
						|
fi
 |