34 lines
1.1 KiB
Bash
Executable file
34 lines
1.1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ##
|
|
# This script starts the first available Polkit agent from a list of possible locations
|
|
|
|
# List of potential Polkit agent file paths
|
|
polkit=(
|
|
"/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1"
|
|
"/usr/libexec/hyprpolkitagent"
|
|
"/usr/lib/hyprpolkitagent"
|
|
"/usr/lib/hyprpolkitagent/hyprpolkitagent"
|
|
"/usr/lib/polkit-kde-authentication-agent-1"
|
|
"/usr/lib/polkit-gnome-authentication-agent-1"
|
|
"/usr/libexec/polkit-gnome-authentication-agent-1"
|
|
"/usr/libexec/polkit-mate-authentication-agent-1"
|
|
"/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1"
|
|
"/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1"
|
|
)
|
|
|
|
executed=false
|
|
|
|
# Loop through the list of paths
|
|
for file in "${polkit[@]}"; do
|
|
if [ -e "$file" ] && [ ! -d "$file" ]; then
|
|
echo "Found: $file — executing..."
|
|
exec "$file"
|
|
executed=true
|
|
break
|
|
fi
|
|
done
|
|
|
|
# Fallback message if nothing executed
|
|
if [ "$executed" == false ]; then
|
|
echo "No valid Polkit agent found. Please install one."
|
|
fi
|