mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-11-04 09:16:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
if pgrep swayidle >/dev/null; then
 | 
						|
    killall swayidle
 | 
						|
    notify-send "Idle" "Idle timeouts disabled"
 | 
						|
else
 | 
						|
    swayidle & disown
 | 
						|
    notify-send "Idle" "Idle timeouts enabled"
 | 
						|
fi
 |