blob: 2b4a04d3337b405663b2d73b6199bf4583f35bdf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/nix/store/vqvj60h076bhqj6977caz0pfxs6543nb-bash-5.2-p15/bin/bash
# This is a helper to the arch-updates.py executor
# Add `<your-terminal-here> -e "au.sh; swaymsg reload"` as the On left click action
# Just in case - warn if battery level < threshold
l=$(acpi | awk -F ',' '{print $2}')
if [[ ! -z "$l" ]]; then
level=${l:1:-1}
threshold=30
if [[ "$level" -lt "$threshold" ]]; then
echo -e "\n*** BATTERY LEVEL$l, CONNECT AC! ***\n"
fi
fi
trizen -Syu &&
rm /tmp/arch-updates
echo Press enter to exit!; read;
|