some minor cleanup of issues detected by shellcheck after applying the patch: 'modemmonitor: use dbus-monitor'
This commit is contained in:
		
							parent
							
								
									1e00b72d90
								
							
						
					
					
						commit
						e11d3aaea3
					
				
					 1 changed files with 4 additions and 5 deletions
				
			
		| 
						 | 
					@ -1,5 +1,4 @@
 | 
				
			||||||
#!/usr/bin/env sh
 | 
					#!/usr/bin/env sh
 | 
				
			||||||
TIMEOUT=3
 | 
					 | 
				
			||||||
LOGDIR="$XDG_CONFIG_HOME"/sxmo/modem
 | 
					LOGDIR="$XDG_CONFIG_HOME"/sxmo/modem
 | 
				
			||||||
NOTIFDIR="$XDG_CONFIG_HOME"/sxmo/notifications
 | 
					NOTIFDIR="$XDG_CONFIG_HOME"/sxmo/notifications
 | 
				
			||||||
trap "gracefulexit" INT TERM
 | 
					trap "gracefulexit" INT TERM
 | 
				
			||||||
| 
						 | 
					@ -127,12 +126,12 @@ checkfornewtexts() {
 | 
				
			||||||
mainloop() {
 | 
					mainloop() {
 | 
				
			||||||
	checkformissedcalls
 | 
						checkformissedcalls
 | 
				
			||||||
	dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" | \
 | 
						dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Voice',type='signal',member='CallAdded'" | \
 | 
				
			||||||
		while read line; do
 | 
							while read -r; do
 | 
				
			||||||
			checkforincomingcalls
 | 
								checkforincomingcalls
 | 
				
			||||||
			checkformissedcalls
 | 
								checkformissedcalls
 | 
				
			||||||
		done &
 | 
							done &
 | 
				
			||||||
	dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Messaging',type='signal',member='Added'" | \
 | 
						dbus-monitor --system "interface='org.freedesktop.ModemManager1.Modem.Messaging',type='signal',member='Added'" | \
 | 
				
			||||||
		while read line; do
 | 
							while read -r; do
 | 
				
			||||||
			checkfornewtexts
 | 
								checkfornewtexts
 | 
				
			||||||
		done &
 | 
							done &
 | 
				
			||||||
	wait
 | 
						wait
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue