add: polybar custom scripts

add: git aliases
fix. bspwm split_ration madness
This commit is contained in:
Tobias Reisinger 2020-02-22 15:45:08 +01:00
parent c33047354e
commit 1a0ffb4924
7 changed files with 44 additions and 3 deletions
.config/polybar/scripts

View file

@ -0,0 +1,3 @@
#!/bin/sh
echo $(pacman -Qu | wc -l)

View file

@ -0,0 +1,10 @@
#!/bin/sh
speed=$(sensors | grep fan1 | sed -e 's/fan1: *//' -e 's/ RPM.*$//')
if [ "$speed" != "" ]; then
echo "$speed RPM"
else
echo "FAN ERROR"
fi