diff options
| author | Christian Krinitsin <code@krinitsin.xyz> | 2024-06-12 20:04:26 +0200 |
|---|---|---|
| committer | Christian Krinitsin <code@krinitsin.xyz> | 2024-06-12 20:04:26 +0200 |
| commit | 82a32ab8b3e62639e4f9cf787b8967c8da1f1232 (patch) | |
| tree | 32bceec81d6c4eae722d123a592b1196361a1563 /bin/bluetooth-devices | |
| parent | 20d68d3de011282727f3fe9701fcce310a0c5135 (diff) | |
| download | dotfiles-82a32ab8b3e62639e4f9cf787b8967c8da1f1232.tar.gz dotfiles-82a32ab8b3e62639e4f9cf787b8967c8da1f1232.zip | |
remove waybar elements, add and modify scripts, add mult. monitor support
Diffstat (limited to 'bin/bluetooth-devices')
| -rwxr-xr-x | bin/bluetooth-devices | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/bluetooth-devices b/bin/bluetooth-devices index f5fe284..d14ff0a 100755 --- a/bin/bluetooth-devices +++ b/bin/bluetooth-devices @@ -10,9 +10,9 @@ connect_bluetooth() { local DEVICE=$2 if bluetoothctl connect $MAC | grep -q 'successful' then - notify-send -t 5000 -r 2954 -u normal " Connected successfully from" " $DEVICE" + notify-send -t 5000 -r 2954 -u normal " Connected successfully to" " $DEVICE" else - notify-send -t 5000 -r 2954 -u normal " Couldn't connect from" " $DEVICE" + notify-send -t 5000 -r 2954 -u normal " Couldn't connect to" " $DEVICE" fi } |