From: Antonio Ospite Date: Mon, 19 Jun 2017 14:27:51 +0000 (+0200) Subject: dump_selections.sh: use a more robust way to get the window name X-Git-Url: https://git.ao2.it/experiments/x-selection-debug.git/commitdiff_plain/7ec9bb1dbf27b7cad6165e7d9c7fc5831986631a dump_selections.sh: use a more robust way to get the window name --- diff --git a/dump_selections.sh b/dump_selections.sh index 1f9da7b..9954a46 100755 --- a/dump_selections.sh +++ b/dump_selections.sh @@ -10,7 +10,7 @@ get_owner() { xwininfo -id $OWNER > /dev/null 2>&1; if [ $? -eq 0 ]; then - OWNER_NAME=$(xprop -id $OWNER WM_NAME | cut -d ' ' -f 3-) + OWNER_NAME=$(xprop -id $OWNER | grep "^WM_NAME" | cut -d ' ' -f 3-) if [ -z "$OWNER_NAME" ]; then OWNER_NAME="$OWNER"