You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
383 B
Bash

#!/bin/bash
printf "Choose a profile:\n1. High Performance\n2. Best Battery\n\nPick a number: "
read -e -n 1 choice
cd "${0%/*}"
if [ "$choice" = "1" ]; then
sudo mv /etc/tlp.conf tlp_old.conf
sudo cp battery_ok.conf /etc/tlp.conf
sudo tlp start
fi
if [ "$choice" = "2" ]; then
sudo mv /etc/tlp.conf tlp_old.conf
sudo cp battery_max.conf /etc/tlp.conf
sudo tlp start
fi