mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2025-07-04 11:19:06 +03:00
Migrate from qtile bar to eww widgets
This commit is contained in:
71
GitRepositories/patches/rofi-bluetooth/dontshowmenu.patch
Normal file
71
GitRepositories/patches/rofi-bluetooth/dontshowmenu.patch
Normal file
@ -0,0 +1,71 @@
|
||||
diff --git a/rofi-bluetooth b/rofi-bluetooth
|
||||
index 5c52fd8..012e612 100755
|
||||
--- a/rofi-bluetooth
|
||||
+++ b/rofi-bluetooth
|
||||
@@ -33,7 +33,6 @@ power_on() {
|
||||
toggle_power() {
|
||||
if power_on; then
|
||||
bluetoothctl power off
|
||||
- show_menu
|
||||
else
|
||||
if rfkill list bluetooth | grep -q 'blocked: yes'; then
|
||||
rfkill unblock bluetooth && sleep 3
|
||||
@@ -59,7 +58,6 @@ toggle_scan() {
|
||||
if scan_on; then
|
||||
kill $(pgrep -f "bluetoothctl scan on")
|
||||
bluetoothctl scan off
|
||||
- show_menu
|
||||
else
|
||||
bluetoothctl scan on &
|
||||
echo "Scanning..."
|
||||
@@ -83,10 +81,8 @@ pairable_on() {
|
||||
toggle_pairable() {
|
||||
if pairable_on; then
|
||||
bluetoothctl pairable off
|
||||
- show_menu
|
||||
else
|
||||
bluetoothctl pairable on
|
||||
- show_menu
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -105,10 +101,8 @@ discoverable_on() {
|
||||
toggle_discoverable() {
|
||||
if discoverable_on; then
|
||||
bluetoothctl discoverable off
|
||||
- show_menu
|
||||
else
|
||||
bluetoothctl discoverable on
|
||||
- show_menu
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -126,10 +120,8 @@ device_connected() {
|
||||
toggle_connection() {
|
||||
if device_connected $1; then
|
||||
bluetoothctl disconnect $1
|
||||
- device_menu "$device"
|
||||
else
|
||||
bluetoothctl connect $1
|
||||
- device_menu "$device"
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -183,8 +175,6 @@ toggle_trust() {
|
||||
# Useful for status bars like polybar, etc.
|
||||
print_status() {
|
||||
if power_on; then
|
||||
- printf ''
|
||||
-
|
||||
mapfile -t paired_devices < <(bluetoothctl paired-devices | grep Device | cut -d ' ' -f 2)
|
||||
counter=0
|
||||
|
||||
@@ -202,8 +192,6 @@ print_status() {
|
||||
fi
|
||||
done
|
||||
printf "\n"
|
||||
- else
|
||||
- echo ""
|
||||
fi
|
||||
}
|
||||
|
Reference in New Issue
Block a user