web-dev-qa-db-ja.com

Zenity Promptでwmctrlを使用すると、セキセイインコのセグメンテーションエラーが発生する

途中でいくつかのダイアログプロンプトを表示してワークスペースを切り替えるbashスクリプトを作成しようとしています。 Budgie remixでUbuntu 17.04を実行しています。

wmctrlまたはzenityを個別に使用すると、両方とも正常に機能します。ただし、それらをまとめると、セカンドフォールトでバッジウィンドウマネージャーがクラッシュします。

これは、wmctrl -s 0xdotool set_desktop 0の両方を使用して発生します。それらは単独で正常に動作しますが、zenityとの組み合わせでは動作しません。

ここに私のコードがあります(セグメンテーションフォールトを誘発します)

#!/bin/bash

desktop=$(xdotool get_desktop) #Get current workspace id

if [ "${desktop}" -eq 0 ] #If workspace == 0
then
  wmctrl -s 3 #Switch to workspace 3
  firefox --new-window "http://www.reddit.com"
else
    zenity --question --title "Switch Workspace?" --text "Are you sure you wish to return to previous workspace?"
    if ! $? #If response Yes
    then
      wmctrl -s 0 #Switch back
    else
      notify-send "Operation Aborted" "User canceled workspace return."
    fi
fi

wmctrlコマンドを単独で使用する場合の作業コードの例

#!/bin/bash

desktop=$(xdotool get_desktop) #Get current workspace id

if [ "${desktop}" -eq 0 ] #If workspace == 0
then
  wmctrl -s 3 #Switch to workspace 3
  firefox --new-window "http://www.reddit.com"
else
  wmctrl -s 0 #Switch back
fi

zenityコマンドを単独で使用する場合の作業コードの例

#!/bin/bash

desktop=$(xdotool get_desktop) #Get current workspace id

if [ "${desktop}" -eq 0 ] #If workspace == 0
then
  wmctrl -s 3 #Switch to workspace 3
  firefox --new-window "http://www.reddit.com"
else
    zenity --question --title "Switch Workspace?" --text "Are you sure you wish to return to previous workspace?"
    if ! $? #If response Yes
    then
      notify-send "Switch Workspace" "Operation placeholder."
    else
      notify-send "Operation Aborted" "User canceled workspace return."
    fi
fi

journalctl内で見つけたものを次に示します

Dec 02 11:17:54 main budgie-wm.desktop[20079]: Window manager warning: Received a NET_CURRENT_DESKTOP message from a broken (outdated) client who sent a 0 timestamp
Dec 02 11:17:54 main kernel: budgie-wm[20079]: segfault at 18 ip 00007fa255e8dfc1 sp 00007fff13189710 error 4 in libmutter-0.so.0.0.0[7fa255df0000+131000]
Dec 02 11:17:55 main gnome-session-binary[19810]: WARNING: Application 'budgie-wm.desktop' killed by signal 11
Dec 02 11:17:55 main gnome-session[19810]: gnome-session-binary[19810]: WARNING: Application 'budgie-wm.desktop' killed by signal 11
Dec 02 11:17:55 main ckb.desktop[20137]: QXcbConnection: XCB error: 148 (Unknown), sequence: 423, resource id: 0, major code: 140 (Unknown), minor code: 20
Dec 02 11:17:56 main budgie-wm[21537]: invalid (NULL) pointer instance
Dec 02 11:17:56 main budgie-wm[21537]: g_signal_connect_object: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

zenityを使用してワークスペースの切り替えをトリガーしても、両方のコンポーネントが個別に正常に動作する場合、セグメンテーション違反の原因は何ですか?

3
Tom

Zenity内のバグとして提出:参照: https://bugs.launchpad.net/ubuntu/+source/zenity/+bug/1735917

0
Tom