aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/bcn
diff options
context:
space:
mode:
authorkrolxon <krolyxon@tutanota.com>2025-10-10 21:08:40 +0530
committerkrolxon <krolyxon@tutanota.com>2025-10-10 21:08:40 +0530
commitb17a3d98f755b0d2dcf5035d79ce771b4ecd258e (patch)
treecd80514ced7e58d275b42d42d29d25b721f5442f /.local/bin/bcn
parentbfcfc9f04da5757b1e5e44eac0fb9e57fe41bf26 (diff)
add define_word script
Diffstat (limited to '.local/bin/bcn')
-rwxr-xr-x.local/bin/bcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/bcn b/.local/bin/bcn
index 1c64085..b87e2ab 100755
--- a/.local/bin/bcn
+++ b/.local/bin/bcn
@@ -9,7 +9,7 @@ if [[ $device_amount = 1 ]]; then
MAC=$(bluetoothctl devices | awk {'print $2'})
[ -z $MAC ] && MAC=NoDeviceFound # Prevents accidental disconnect error
else
- select=$(bluetoothctl devices | awk {'print $3'} | rofi -dmenu -l 10 -fn Monospace-15)
+ select=$(bluetoothctl devices | awk {'print $3'} | fuzzel --dmenu -l 10 -fn Monospace-15)
MAC=$(bluetoothctl devices | grep $select | awk {'print $2'})
[ -z $MAC ] && MAC=NoDeviceFound # Prevents accidental disconnect error
fi