Compare commits

...

7 Commits
v1.6 ... master

Author SHA1 Message Date
Santiago Lo Coco 0c58b2c27d Read before writing smc 2024-04-10 14:09:05 +02:00
Santiago Lo Coco b54f0fbbfd Add log function 2024-04-10 13:58:21 +02:00
Santiago Lo Coco 9204bc1c07 Revert "Remove useless echo"
This reverts commit 4ced07c359.
2024-04-10 13:35:46 +02:00
Santiago Lo Coco 4ced07c359 Remove useless echo 2024-04-10 13:23:44 +02:00
Santiago Lo Coco 662c7c6dd6 Add LICENSE.md 2024-04-10 12:29:36 +02:00
Santiago Lo Coco 7661855869 Revert "Fix PATH for homebrew"
This reverts commit 8e8dcf8dd4.
2024-04-10 12:29:27 +02:00
Santiago Lo Coco 8e8dcf8dd4 Fix PATH for homebrew 2024-04-10 12:18:00 +02:00
2 changed files with 36 additions and 7 deletions

21
LICENSE.md Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2024 Santiago Lo Coco
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -9,6 +9,7 @@ PATH="/usr/bin:/usr/local/bin:/usr/sbin:/opt/homebrew/bin:/opt/homebrew/sbin:/op
usage() {
cat << EOF
usage: ${0##*/} [command]
charging [on|off] - Toggle charging
adapter [on|off] - Toggle adapter connection
status - Get status information
@ -26,24 +27,31 @@ read_cache() {
cat "$TMP_FILE" 2> /dev/null
}
log_message() {
timestamp=$(date "+%b %d %H:%M:%S")
echo "$timestamp - $1"
}
enable_discharging() {
echo "Enabling battery discharging"
log_message "Enabling battery discharging"
sudo smc -k CH0I -w 01
}
disable_discharging() {
echo "Disabling battery discharging"
log_message "Disabling battery discharging"
sudo smc -k CH0I -w 00
}
enable_charging() {
echo "Enabling battery charging"
[[ "$(get_smc_charging_hex)" == "00" ]] && return
log_message "Enabling battery charging"
sudo smc -k CH0B -w 00
sudo smc -k CH0C -w 00
}
disable_charging() {
echo "Disabling battery charging"
[[ "$(get_smc_charging_hex)" != "00" ]] && return
log_message "Disabling battery charging"
sudo smc -k CH0B -w 02
sudo smc -k CH0C -w 02
}
@ -117,7 +125,7 @@ runScript() {
[[ -f "$launch_daemon" ]] && sudo launchctl unload -w "$launch_daemon"
;;
"charging")
echo "Setting $action to $setting"
log_message "Setting $action to $setting"
case "$setting" in
"on") enable_charging && write_cache "enabled" ;;
"off") disable_charging && write_cache "disabled" ;;
@ -125,7 +133,7 @@ runScript() {
esac
;;
"adapter")
echo "Setting $action to $setting"
log_message "Setting $action to $setting"
case "$setting" in
"on") enable_discharging ;;
"off") disable_discharging ;;
@ -135,7 +143,7 @@ runScript() {
"status")
case "$setting" in
"charging") exit "$(get_smc_charging_hex)" ;;
"cache") echo "$(get_cached_status)" ;;
"cache") get_cached_status ;;
*) echo "Battery at $(get_battery_percentage)%, smc charging $(get_smc_charging_status)" ;;
esac
;;