diff --git a/PKGBUILD b/PKGBUILD index d6aa702..914988c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: Librewish pkgname=garuda-common-settings -pkgver=2.4.2 +pkgver=2.4.3 pkgrel=1 arch=('any') url="https://gitlab.com/garuda-linux/themes-and-settings/settings/$pkgname" diff --git a/usr/share/polkit-1/rules.d/99-garuda.rules b/usr/share/polkit-1/rules.d/99-garuda.rules index acb365f..f7fad8c 100644 --- a/usr/share/polkit-1/rules.d/99-garuda.rules +++ b/usr/share/polkit-1/rules.d/99-garuda.rules @@ -52,15 +52,6 @@ polkit.addRule(function(action, subject) { } }); -polkit.addRule(function(action, subject) { - if ((action.id == "org.archlinux.pkexec.gparted" || - action.id == "org.kde.kpmcore.externalcommand.init") && - subject.isInGroup("wheel")) - { - return polkit.Result.YES; - } -}); - polkit.addRule(function(action, subject) { if ((action.id == "org.opensuse.cupspkhelper.mechanism.all-edit") && subject.isInGroup("wheel")) @@ -69,14 +60,6 @@ polkit.addRule(function(action, subject) { } }); -polkit.addRule(function(action, subject) { - if ((action.id == "org.libvirt.unix.manage") && - subject.isInGroup("wheel")) - { - return polkit.Result.YES; - } -}); - polkit.addRule(function(action, subject) { if ((action.id == "org.corectrl.helper.init" || @@ -86,20 +69,3 @@ polkit.addRule(function(action, subject) { return polkit.Result.YES; } }); - -polkit.addRule(function(action, subject) { - if ((action.id == "in.teejeetech.pkexec.timeshift-gtk" || - action.id == "in.teejeetech.pkexec.timeshift") && - subject.isInGroup("wheel")) - { - return polkit.Result.YES; - } -}); - -polkit.addRule(function(action, subject) { - if ((action.id == "org.garuda.btfrs-assistant.pkexec.policy.run") && - subject.isInGroup("wheel")) - { - return polkit.Result.YES; - } -});