From 0b89db04b3e5cce04aec3258153b9d282278d755 Mon Sep 17 00:00:00 2001 From: "Eshan Roy (Eshanized)" Date: Fri, 10 May 2024 11:24:08 +0530 Subject: [PATCH] fix(add): add polkit --- snigdhaos-calamares-config/calamares_polkit | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 snigdhaos-calamares-config/calamares_polkit diff --git a/snigdhaos-calamares-config/calamares_polkit b/snigdhaos-calamares-config/calamares_polkit new file mode 100644 index 00000000..6089e64a --- /dev/null +++ b/snigdhaos-calamares-config/calamares_polkit @@ -0,0 +1,6 @@ +#!/bin/bash +if [ $(which pkexec) ]; then + pkexec --disable-internal-agent "/usr/bin/calamares" "$@" +else + /usr/bin/calamares "$@" +fi \ No newline at end of file