-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1492 from fastfetch-cli/dev
Release: v2.34.0
- Loading branch information
Showing
72 changed files
with
982 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
fastfetch (2.33.0) jammy; urgency=medium | ||
|
||
* Update to 2.33.0 | ||
|
||
-- Carter Li <[email protected]> Thu, 26 Dec 2024 09:42:27 +0800 | ||
|
||
fastfetch (2.32.0) jammy; urgency=medium | ||
|
||
* Update to 2.32.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
fastfetch_2.32.0_source.buildinfo universe/utils optional | ||
fastfetch_2.33.0_source.buildinfo universe/utils optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include "bluetooth.h" | ||
|
||
#define L2CAP_SOCKET_CHECKED | ||
#include <bluetooth.h> | ||
|
||
static int enumDev(FF_MAYBE_UNUSED int sockfd, struct bt_devinfo const* dev, FFlist* devices) | ||
{ | ||
FFBluetoothResult* device = ffListAdd(devices); | ||
ffStrbufInitS(&device->name, bt_devremote_name_gen(dev->devname, &dev->bdaddr)); | ||
ffStrbufInitS(&device->address, bt_ntoa(&dev->bdaddr, NULL)); | ||
ffStrbufUpperCase(&device->address); | ||
ffStrbufInit(&device->type); | ||
device->battery = 0; | ||
device->connected = true; | ||
return 0; | ||
} | ||
|
||
const char* ffDetectBluetooth(FF_MAYBE_UNUSED FFBluetoothOptions* options, FF_MAYBE_UNUSED FFlist* devices /* FFBluetoothResult */) | ||
{ | ||
// struct hostent* ent = bt_gethostent(); | ||
if (bt_devenum((void*) enumDev, devices) < 0) | ||
return "bt_devenum() failed"; | ||
|
||
return 0; | ||
} |
Oops, something went wrong.