Implemented suggested fix for Notifications menu fails with special characters (#78)
This commit is contained in:
parent
1edb932f44
commit
8dc0b9ca45
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue