mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-27 07:29:28 +02:00
12 lines
153 B
Bash
Executable File
12 lines
153 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [[ $EUID -ne 0 ]];
|
|
then
|
|
exec pkexec --disable-internal-agent "$0" "$@"
|
|
fi
|
|
|
|
exec /usr/bin/steamos-factory-reset-config "$@"
|
|
|