• 0 Posts
  • 18 Comments
Joined 5 years ago
cake
Cake day: June 24th, 2020

help-circle


  • Lemmy format allows having an actual dialogue

    It’s great for seeing existing dialogue, but I think it falls short for long term discussion between more than two people.

    On a non-threaded board (e.g. forums, github issues) you can watch a thread you’re interested in. On Lemmy/reddit you only get notifications for direct responses to your comments.

    I think some sort of option to watch/unwatch whole subtrees of comments would help a lot.






  • Something which notifies you whenever a new comment or reply is made to a selected post/comment, so that you can keep track of any new conversation.

    Something like this would be awesome as a core Lemmy feature IMO. It would essentially turn a post (or maybe any comment tree?) into a matrix style room. Lemmy is actually decent for long term discussion (e.g. helping someone with a problem), but not if there are more than two people involved.











  • Could you do:

    Please share the output of grep -v /sys/class/dmi/id/* as a normal user (not root)

    It looks like all the patches from that thread are in linux 6.6, so your board may still need quirks added.

    Once you know the board name you try something like this:

      boot.kernelPatches = [{
          name = "acpi quirk";
          patch = pkgs.writeText "acpi.patch" ''
    diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
    index 297a88587031..655332f3a5da 100644
    --- a/drivers/acpi/resource.c
    +++ b/drivers/acpi/resource.c
    @@ -524,6 +524,12 @@ static const struct dmi_system_id pcspecialist_laptop[] = {
     			DMI_MATCH(DMI_BOARD_NAME, "GM6BG0Q"),
     		},
     	},
    +	{
    +		/* [COMPUTER DESCRIPTION] */
    +		.matches = {
    +			DMI_MATCH(DMI_BOARD_NAME, "[BOARD_NAME]"),
    +		},
    +	},
     	{ }
     };
    '';
      }];
    

    Just be careful that the indentation of the patch part doesn’t get changed.