Intial commit

This commit is contained in:
Severin Kaderli 2016-09-02 20:38:41 +02:00
parent 3bd75bf208
commit 4d7bdfdc88
7 changed files with 477 additions and 0 deletions

11
.config/i3/i3bar/volume.sh Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
# volume.sh
volume=$(/usr/share/i3blocks/volume 5 pulse)
if [ ${volume::-1} -ge "35" ]; then
echo "$volume"
elif [ ${volume::-1} -gt "0" ]; then
echo "$volume"
else
echo "$volume"
fi