• 0 Posts
  • 17 Comments
Joined 2 years ago
cake
Cake day: February 20th, 2023

help-circle













  • Seeing a lot of Manjaro here, what’s the deal? I installed it just yesterday on a test machine to check it out as I plan on steering over from windows long-term so just browsing what’s out there. Don’t really have issues and it ticks the boxes of a more user-friendly installation and comes out of the box with Plasma. I may try out pure Arch or the GUI fork just not to have the hassle of setting up the DE


  • Just to add a perspective from the other side of the fence, I have a gaming laptop running Windows 11 (yes I know) where this (or a very similar) issue has been plaguing Ryzen users for at least a year and a half. The issue is that TPM per se is not causing issues if turned on, but if BitLocker encryption is on it will cause occasional audio stutters and intermittent complete system halts. The only thing that reliably helps is completely turning off Bitlocker, the TPM chip can stay on and is of course needed for W11. OEMs and AMD have been digging their heads in the sand like ostritches and they have released the odd fix that does nothing to fix the underlying issue. I can’t see MS doing anything to reverse course on requirements and am getting a bit fed up with their BS lately, browsing what distro might suit me best and might pull the trigger and finally switch…



  • I similarly made two functions depending on the use case (see comments in code) and saved them in Powershell’s default profile (Microsoft.PowerShell_profile.ps1) so I can invoke them with just one word directly in commandline, works great 👌

    function Vid {
        param (
            [Parameter(Mandatory=$true)]
            [string]$link
        )
        yt-dlp -P "$env:USERPROFILE\Downloads" $link -S "res:1080,br" --embed-subs --sub-langs all,-live_chat --remux mp4
    } #Downloads videos using yt-dlp limited to 1080p; usage Vid YT_URL
    function VidFull {
        param (
            [Parameter(Mandatory=$true)]
            [string]$link
        )
        yt-dlp -P "$env:USERPROFILE\Downloads" $link --embed-subs --sub-langs all,-live_chat --remux mp4
    } #Downloads videos using yt-dlp in maximum quality; usage VidFull YT_URL