mirror of
https://abf.rosa.ru/djam/mtr.git
synced 2025-02-23 14:42:48 +00:00
10 lines
420 B
Bash
10 lines
420 B
Bash
#!/bin/sh
|
|
|
|
error_message="You are trying to run mtr-gtk in a Wayland session, however mtr-gtk requires root privileges and such graphical applications are not allowed to run on Wayland by default.\n"
|
|
|
|
if [ "$XDG_SESSION_TYPE" = wayland ]; then
|
|
zenity --error --title "mtr-gtk on Wayland" --text "$error_message" --width=600 2>/dev/null || printf "$error_message" >&2
|
|
exit 1
|
|
fi
|
|
|
|
/usr/bin/pkexec /usr/bin/xmtr.bin
|