Browse Source

removed unnecessary binaries, and updated mbell

master
mort 9 years ago
parent
commit
c4f6576aa5
3 changed files with 15 additions and 19 deletions
  1. 15
    11
      bin/mbell
  2. BIN
      bin/youtube-dl
  3. 0
    8
      bin/youtube-stream

+ 15
- 11
bin/mbell View File

#!/bin/bash #!/bin/bash


if [[ $1 ]]; then
name=$1
else
name="<unknown>"
fi
# Written by Francis Wharf, https://github.com/xeom


code=1
# Default
name="<unknown>"

# If there is an argument, use it as program name
[[ $1 ]] && name=$1


while true; do while true; do
read -r -d "" -t 10;
# Read, ignoring escapes, until the first bell char if
# no bell is received in 10 seconds, the script loops
read -r -d $(printf "\007") -t 10;
code=$? code=$?


# If the code is a timeout error, continue
if [[ $code > 128 ]]; then if [[ $code > 128 ]]; then
continue continue
fi


if [[ $code != 0 ]]; then
break;
# If read returned eof, suicide
elif [[ $code != 0 ]]; then
exit 0
fi fi


mnotify "$name" "Bell from $name"
# If read returned success, notify user of bell
mnotify "$name" "Bell received"
done; done;

BIN
bin/youtube-dl View File


+ 0
- 8
bin/youtube-stream View File

#!/bin/sh

dir="$(mktemp -d)"
cd "$dir"
youtube-dl "$1"
airstream * -o "$2"
cd ..
rm -r "$dir"

Loading…
Cancel
Save