Implemented suggested fix for Notifications menu fails with special characters (#78)

master
Maarten van Gompel 4 years ago
parent 1edb932f44
commit 8dc0b9ca45
  1. 2
      scripts/notifications/sxmo_notificationsmenu.sh

@ -24,7 +24,7 @@ notificationmenu() {
[ "$PICKEDCONTENT" = "Close Menu" ] && exit 1
[ "$PICKEDCONTENT" = "Clear Notifications" ] && rm "$NOTIFDIR"/* && exit 1
PICKEDNOTIFFILE="$(echo "$CHOICES" | awk '{$1=$1};1' | grep "$PICKEDCONTENT" | cut -d^ -f2 | tr -d ' ')"
PICKEDNOTIFFILE="$(echo "$CHOICES" | tr -s ' ' | grep -F "$PICKEDCONTENT" | cut -d^ -f2 | tr -d ' ')"
NOTIFACTION="$(head -n1 "$PICKEDNOTIFFILE")"
setsid -f sh -c "$NOTIFACTION" &
rm "$PICKEDNOTIFFILE"

Loading…
Cancel
Save