mirror of
https://github.com/Snigdha-OS/snigdhaos-pkgbuilds.git
synced 2025-12-06 08:03:50 +01:00
6 lines
132 B
Bash
Executable File
6 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
if [ $(which pkexec) ]; then
|
|
pkexec --disable-internal-agent "/usr/bin/calamares" "$@"
|
|
else
|
|
/usr/bin/calamares "$@"
|
|
fi |