[+] Linux bluetooth detection

https://github.com/dylanaraps/neofetch/issues/2284
This commit is contained in:
Azalea Gui 2023-01-20 20:04:41 -05:00
parent b366211d70
commit 62486ca5ef
No known key found for this signature in database
GPG key ID: E289FAC0DA92DD2B

View file

@ -76,6 +76,7 @@ print_info() {
info "GPU" gpu info "GPU" gpu
info "Memory" memory info "Memory" memory
info "Network" network info "Network" network
info "Bluetooth" bluetooth
info "BIOS" bios info "BIOS" bios
# info "GPU Driver" gpu_driver # Linux/macOS only # info "GPU Driver" gpu_driver # Linux/macOS only
@ -3413,6 +3414,16 @@ get_network() {
fi fi
} }
get_bluetooth() {
# Find bluetooth using lsusb
if command -v lsusb &> /dev/null; then
bluetooth="$(lsusb | cut -c34- | grep -i bluetooth)"
fi
# Remove "Bluetooth" suffix
bluetooth="${bluetooth%[Bb]luetooth}"
}
get_song() { get_song() {
players=( players=(
"amarok" "amarok"
@ -6354,6 +6365,7 @@ get_args() {
info "GPU Driver" gpu_driver info "GPU Driver" gpu_driver
info "Memory" memory info "Memory" memory
info "Network" network info "Network" network
info "Bluetooth" bluetooth
info "BIOS" bios info "BIOS" bios
info "Disk" disk info "Disk" disk