Compare commits

..

No commits in common. "3153ca60417247490d127a9ec62b9173f2636737" and "083aa183eb846105cad65b1ed2aa76b8c5e789d2" have entirely different histories.

2 changed files with 0 additions and 15 deletions

View File

@ -47,9 +47,6 @@ endsnippet
snippet im "inline math" w
\$${1:${VISUAL}}\$
endsnippet
snippet mm "block math" w
\$ ${1:${VISUAL}} \$
endsnippet
snippet link "link" w
#link("${1}")[${2}]

View File

@ -1,12 +0,0 @@
#!/bin/sh
# i didn't *really* feel like having a cronjob for this so
while true; do
BAT="$(acpi -b | head -n 1 | awk -F'[,:]' '{print $3}' | tr -d '[:space:]%')"
if [ "$BAT" -lt "10" ]; then
notify-send -u critical -a battery "currently at $BAT%"
elif [ "$BAT" -lt "20" ]; then
notify-send -a battery "currently at $BAT%"
fi
sleep 240
done