mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-26 22:06:35 +01:00
7 lines
131 B
Text
7 lines
131 B
Text
|
#!/bin/bash
|
||
|
if [ $(which pkexec) ]; then
|
||
|
pkexec --disable-internal-agent "/usr/sbin/gparted" "$@"
|
||
|
else
|
||
|
/usr/sbin/gparted "$@"
|
||
|
fi
|