PoshCode Archive  Artifact [8ccc7029d9]

Artifact 8ccc7029d9b13bc28eed004adf67865715f51bc9c5480514510c181e84a73087:

  • File PROMPT-Battery-life.ps1 — part of check-in [7d4887d73f] at 2018-06-10 14:23:26 on branch trunk — Just a simple little script which looks at the current charge left in your battery and puts it above your prompt. Adjust when it comes on with $GLOBAL:BatteryDisplayAtPercent, by default it’s 101 which shows when it’s charging on down. Why 101? Because when you charge a battery you supply more capacity then it has, so the % will always be >100. (user: unknown size: 2114)

# encoding: ascii
# api: powershell
# title: PROMPT: Battery life
# description: Just a simple little script which looks at the current charge left in your battery and puts it above your prompt. Adjust when it comes on with $GLOBAL:BatteryDisplayAtPercent, by default it’s 101 which shows when it’s charging on down. Why 101? Because when you charge a battery you supply more capacity then it has, so the % will always be >100.
# version: 0.1
# type: script
# license: CC0
# x-poshcode-id: 738
# x-archived: 2008-12-21T05:41:16
#
#
# ==============================================================================================
# 
# Microsoft PowerShell Source File -- Created with SAPIEN Technologies PrimalScript 2007
# 
# NAME: Battery-Prompt.ps1
# 
# AUTHOR: Jeremy D. Pavleck , Pavleck.NET
# DATE  : 12/18/2008
# 
# COMMENT: Lists the percentage of battery remaining above your prompt inside the console.
#	Difficulty level: OVER 9000!!!!!!!!!!!!!!!!
# 
# ==============================================================================================
$GLOBAL:BatteryDisplayAtPercent = 101 # When should get start displaying status
									  # Anything over 100 means to show it all
Function GLOBAL:Get-BattLevel($minLevel) {
$charge = (Get-WmiObject -Class Win32_Battery).EstimatedChargeRemaining
If(!$charge) {break} # Not on a laptop, or no battery, so exit
Switch($charge) {
{($charge -ge 101) -and ($minLevel -ge 101)} {Write-Host "Batt: CHARGING" -ForeGroundColor Green}
{($charge -ge 80) -and ($charge -le 100) -and ($charge -le $minLevel)} {Write-Host "Batt: $charge%" -ForeGroundColor Green}
{($charge -ge 40) -and ($charge -le 79) -and ($charge -le $minLevel)} {Write-Host "Batt: $charge%" -ForeGroundColor Yellow}
{($charge -ge 16) -and ($charge -le 39) -and ($charge -le $minLevel)} {Write-Host "Batt: $charge%" -ForeGroundColor Magenta}
{($charge -ge 1) -and ($charge -le 15) -and ($charge -le $minLevel)} {Write-Host "Batt: $charge%" -ForeGroundColor Red}
default {break}
	}
 }
 
function prompt() {
Get-BattLevel $GLOBAL:BatteryDisplayAtPercent
}