This commit is contained in:
joachimschmidt557 2019-10-11 15:44:48 +02:00
parent 8b4173f078
commit 1f8acca322
2 changed files with 36 additions and 0 deletions

View file

@ -4,13 +4,21 @@ install:
install -Dm755 youtube-mp3 $(DESTDIR)$(PREFIX)/bin/youtube-mp3 install -Dm755 youtube-mp3 $(DESTDIR)$(PREFIX)/bin/youtube-mp3
install -Dm755 nope $(DESTDIR)$(PREFIX)/bin/nope install -Dm755 nope $(DESTDIR)$(PREFIX)/bin/nope
install -Dm755 m4a2wav $(DESTDIR)$(PREFIX)/bin/m4a2wav install -Dm755 m4a2wav $(DESTDIR)$(PREFIX)/bin/m4a2wav
install -Dm755 src $(DESTDIR)$(PREFIX)/bin/src
install -Dm755 blue $(DESTDIR)$(PREFIX)/bin/blue
uninstall: uninstall:
$(RM) $(DESTDIR)$(PREFIX)/bin/youtube-mp3 $(RM) $(DESTDIR)$(PREFIX)/bin/youtube-mp3
$(RM) $(DESTDIR)$(PREFIX)/bin/nope $(RM) $(DESTDIR)$(PREFIX)/bin/nope
$(RM) $(DESTDIR)$(PREFIX)/bin/m4a2wav $(RM) $(DESTDIR)$(PREFIX)/bin/m4a2wav
$(RM) $(DESTDIR)$(PREFIX)/bin/src
$(RM) $(DESTDIR)$(PREFIX)/bin/blue
shellcheck: shellcheck:
shellcheck youtube-mp3 shellcheck youtube-mp3
shellcheck nope shellcheck nope
shellcheck m4a2wav shellcheck m4a2wav
shellcheck src
shellcheck blue
.PHONY: install uninstall shellcheck

28
blue Executable file
View file

@ -0,0 +1,28 @@
#!/bin/sh
RECENT=$(fish -c "history | grep -v 'grep' | grep 'bluetoothctl connect' | awk '{print \$3;}'")
OPTION=$(echo "$RECENT" | cat <<EOF | dmenu)
On
Off
Disconnect
$RECENT
EOF
case "$OPTION" in
On)
bluetoothctl power on
;;
Off)
bluetoothctl power off
;;
Disconnect)
bluetoothctl disconnect
;;
"")
exit 1
;;
*)
bluetoothctl connect "$OPTION"
;;
esac