Skip to content

Instantly share code, notes, and snippets.

@ckrzen
ckrzen / CRUX-Inst.sh
Created February 9, 2020 01:42
CRUX Linux scripts
#!/bin/bash
#
# CRUX post-install script
#
# Author: Chris Rainey <ckrzen at tuta dot io>
#
# Version: 0.8
###
UPGRADE()
@ckrzen
ckrzen / .BATTERY_LOW_WARNING
Last active February 9, 2020 01:38
[dotfiles] Configs for my rigs!
#!/bin/bash
# CRONTAB ENTRY: */5 * * * * /home/chris/.BATTERY_LOW_WARNING >/dev/null 2>&1
POWERSUPPLY=/sys/class/power_supply/ACAD/online
STATUS=$(cat $POWERSUPPLY)
BATTERY=$(upower -e | grep 'BAT')
BATTERY_LEVEL=$(upower -i $BATTERY|grep percentage|awk '{ print $2 }'|sed s/'%'/''/g)