blob: fb46ecbb7a21361ad04bf21a60cf645fd89c6cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "========================================"
echo "PowerCTL installed successfully!"
echo ""
echo "Next steps (run as root):"
echo " sudo /usr/local/bin/install-powerctl.sh"
echo ""
echo "This will:"
echo " • Create configuration files in /etc/powerctl"
echo " • Install helper scripts to /usr/local/bin"
echo " • Set up systemd service to restore power profile at boot"
echo " • Set up polkit rules for passwordless execution from GUI"
echo "========================================"
}
|