Delete duplicate dead code
This commit is contained in:
parent
372b9501a7
commit
687d42cffb
2 changed files with 4 additions and 16 deletions
|
@ -1,12 +1,6 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
pgrep -f sxmo_statusbar.sh | grep -v $$ | xargs kill -9
|
pgrep -f sxmo_statusbar.sh | grep -v $$ | xargs kill -9
|
||||||
|
|
||||||
audiodevice() {
|
|
||||||
amixer sget Earpiece | grep -E '\[on\]' > /dev/null && echo Earpiece && return
|
|
||||||
amixer sget Headphone | grep -E '\[on\]' > /dev/null && echo Headphone && return
|
|
||||||
echo "Line Out"
|
|
||||||
}
|
|
||||||
|
|
||||||
sleep 1
|
sleep 1
|
||||||
UPDATEFILE=/tmp/sxmo_bar
|
UPDATEFILE=/tmp/sxmo_bar
|
||||||
touch $UPDATEFILE
|
touch $UPDATEFILE
|
||||||
|
|
|
@ -1,13 +1,7 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
device() {
|
|
||||||
amixer sget Earpiece | grep -E '\[on\]' > /dev/null && echo Earpiece && return
|
|
||||||
amixer sget Headphone | grep -E '\[on\]' > /dev/null && echo Headphone && return
|
|
||||||
echo "Line Out"
|
|
||||||
}
|
|
||||||
|
|
||||||
notify() {
|
notify() {
|
||||||
sxmo_notify.sh 200 "Volume $(
|
sxmo_notify.sh 200 "Volume $(
|
||||||
amixer get "$(device)" |
|
amixer get "$(sxmo_audiocurrentdevice.sh)" |
|
||||||
grep -oE '([0-9]+)%' |
|
grep -oE '([0-9]+)%' |
|
||||||
tr -d ' %' |
|
tr -d ' %' |
|
||||||
awk '{ s += $1; c++ } END { print s/c }' |
|
awk '{ s += $1; c++ } END { print s/c }' |
|
||||||
|
@ -17,15 +11,15 @@ notify() {
|
||||||
}
|
}
|
||||||
|
|
||||||
up() {
|
up() {
|
||||||
amixer set "$(device)" 1+
|
amixer set "$(sxmo_audiocurrentdevice.sh)" 1+
|
||||||
notify
|
notify
|
||||||
}
|
}
|
||||||
down() {
|
down() {
|
||||||
amixer set "$(device)" 1-
|
amixer set "$(sxmo_audiocurrentdevice.sh)" 1-
|
||||||
notify
|
notify
|
||||||
}
|
}
|
||||||
setvol() {
|
setvol() {
|
||||||
amixer set "$(device)" $1
|
amixer set "$(sxmo_audiocurrentdevice.sh)" $1
|
||||||
}
|
}
|
||||||
|
|
||||||
$@
|
$@
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue