Shout out for Smart Tube, the best YT app on smart boxes/android TVs, never had any issues
Damn, didn't occur to me at all, I do use MicroG, but that still doesn't explain late notifications on the iPhone. This is going on for quite some time, friends also report the same issues regardless of plaform
Thinking about it we may actually have less breakage now as Blizzard has started selling Diablo 4 on Steam provided they implement it well. Does that version come with battle.net launcher as mandatory or is that requirement foregone beside account linking?
Wait I was under the impression that some time ago they lifted the embargo as US-Cuba relations have improved a bit. A man would think raising an embargo would improve relations even more /sigh
Thank you for conforming, just ordered the earpods
Man you just nudged me to it, will definitely try it out with my Legion together with PopOS as I'm fed up lately with Windows 11 lately, saving this post for later. I do very much like and prefer KDE, didn't Mint have a KDE integrated release at some point or am I going senile? EDIT: definitely not senile, they had it as an option until 19, bummer
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
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
Wait this can't be right 🤨