11 lines
		
	
	
		
			515 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			515 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# Toggles the LARBS welcome message.
 | 
						|
 | 
						|
PIC="${XDG_DATA_HOME:-$HOME/.local/share}/larbs/larbs.png"
 | 
						|
 | 
						|
grep LARBSWELCOME "$HOME/.xprofile" &&
 | 
						|
	( sed -i "/LARBSWELCOME/d" ~/.xprofile && notify-send -i "$PIC" "LARBS welcome message" "Welcome message disabled. Press Super+Shift+F1 again to reverse." ) ||
 | 
						|
	( echo "notify-send -i \"$PIC\" \"Welcome to LARBS\" \"Press super+F1 for the help menu.\" # LARBSWELCOME" >> ~/.xprofile &&
 | 
						|
		notify-send -i "$PIC" "LARBS welcome message" "Welcome message re-enabled." )
 |