Skip to content

Commit

Permalink
Merge pull request #97 from MalpenZibo/96_nixos-bluetooth-service-fix
Browse files Browse the repository at this point in the history
96 Fix NixOs bluetooth service
  • Loading branch information
MalpenZibo authored Feb 1, 2025
2 parents 18058cb + e8ffb9d commit e98ce02
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Media player module

### Fixed

- Fix bluetooth service in NixOS systems

## [0.4.0] - 2025-01-19

A big update with new features and new configurations!
Expand Down
2 changes: 1 addition & 1 deletion src/services/bluetooth/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ impl BluetoothService {
}

pub async fn check_rfkill_soft_block() -> anyhow::Result<bool> {
let output = Command::new("/usr/sbin/rfkill")
let output = Command::new("rfkill")
.arg("list")
.arg("bluetooth")
.output()
Expand Down

0 comments on commit e98ce02

Please sign in to comment.