mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-11-04 09:16:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			364 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
# Crontab requires DISPLAY and XDG_RUNTIME_HOME
 | 
						|
# to be set when running notify-send, this script
 | 
						|
# makes defines those to make it eaiser to send
 | 
						|
# notifications from crontab without cluttering it
 | 
						|
# It sets "Cron Notification" title, rest of the
 | 
						|
# arguments are passed to notfiy-send
 | 
						|
 | 
						|
XDG_RUNTIME_DIR="/run/user/$(id -u)" \
 | 
						|
DISPLAY=:0 \
 | 
						|
notify-send "$@"
 |