b02352ec33
1 OBS-URL: https://build.opensuse.org/request/show/335050 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gparted?expand=0&rev=31
10 lines
134 B
Bash
10 lines
134 B
Bash
#!/bin/bash
|
|
|
|
if [ $(which pkexec) ]; then
|
|
pkexec --disable-internal-agent "/usr/sbin/gparted" "$@"
|
|
else
|
|
/usr/sbin/gparted "$@"
|
|
fi
|
|
|
|
|