summaryrefslogtreecommitdiff
path: root/scripts/bts
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-03-12 19:54:51 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-03-12 19:54:51 +0530
commit54b772cae06eb25adf33297e35234f33ded81a7b (patch)
treef287ee48faa8013e4a8f0ee764a6d3cd850bb24d /scripts/bts
parent7197e45d94dbcf4877d585fff8e634896876ae83 (diff)
neovim addition
Diffstat (limited to 'scripts/bts')
-rw-r--r--scripts/bts41
1 files changed, 0 insertions, 41 deletions
diff --git a/scripts/bts b/scripts/bts
deleted file mode 100644
index d082132..0000000
--- a/scripts/bts
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-option=$(echo -e "Connect\nDisconnect\nChange profile"| dmenu -p "Do you wish to connect/disconnect or change soundprofile of your bluetooth device:")
-MAC=$(echo "A1:B3:EC:B1:53:60")
-case $option in
- "Connect")
- status=$(systemctl status bluetooth | grep Active | cut -d " " -f 7)
- case $status in
- "active")
- bluetoothctl power on
- bluetoothctl connect $MAC && sleep 2 && [ $(bluetoothctl info $MAC|grep "Connected"|awk -F'[:][ ]' '/^[^#]/{print $2}') == "yes" ] && notify-send "Connected" "Bluetooth Device is connected" || notify-send "Unable to connect!" "Check whether the bluetooth device is switched on.";;
- #pmstat=$(pactl list | grep "Active Profile" | sed '2p;d' | cut -d ' ' -f 3) &&
- #[ -n "$pmstat" ] && notify-send "Connected" "Bluetooth Device is connected" || notify-send "Unable to connect!" "Check whether the bluetooth device is switched on.";;
-
- "inactive" | "failed")
- export SUDO_ASKPASS=/home/saumit/.scripts/dpass
- sudo -A systemctl start bluetooth
- #st -e sudo systemctl start bluetooth &&
- notify-send "Bluetooth daemon is running"
- bluetoothctl power on
- bluetoothctl connect $MAC && sleep 1 && [ $(bluetoothctl info $MAC|grep "Connected"|awk -F'[:][ ]' '/^[^#]/{print $2}') == "yes" ] && notify-send "Connected" "Bluetooth Device is connected" || notify-send "Unable to connect!" "Check whether the bluetooth device is switched on.";
- #pmstat=$(pactl list | grep "Active Profile" | sed '2p;d' | cut -d ' ' -f 3)
- #[ -n "$pmstat" ] && notify-send "Connected" "Bluetooth Device is connected"
- esac;;
-
- "Disconnect")
- bluetoothctl power off && sudo -A systemctl stop bluetooth
- notify-send "Disconnected" "Bluetooth Device is connected" || notify-send "Unable to connect!" "Check whether the bluetooth device is switched on.";;
-
- "Change profile")
- profile=$(echo -e "a2dp_sink(pure audio output)\nhandsfree_head_unit(inferior audio output + mic enable)" | dmenu -p "Choose the profile for your sound card")
- cardindex=$(pacmd list-cards | grep 'index' | awk 'NR==2' | cut -d ' ' -f6)
- past_profile=$(echo "$pmstat")
- case $profile in
- "a2dp_sink(pure audio output)")
- pactl set-card-profile $cardindex a2dp_sink &&
- dunstify "Switched card profile from $past_profile to $profile" -i audio-headphones;;
- "handsfree_head_unit(inferior audio output + mic enable)")
- pactl set-card-profile $cardindex handsfree_head_unit
- notify-send "Switched card profile from $past_profile to $profile" -i audio-headset;;
- esac
-esac