potemkinhr

joined 2 years ago
[–] potemkinhr@lemmy.ml 5 points 1 year ago

I dont know man, I installed Liftoff as I want a consistent UI throughout iOS and Android and so far it’s great. Roll with whatever works for you πŸ€·β€β™‚οΈ

[–] potemkinhr@lemmy.ml 4 points 1 year ago (4 children)

Chiming in, is there a solid OneDrive client for linux that just works? No collaboration stuff needed for it or other fluff, just simple file sync. I pay for OneDrive family and would be nice to be able to sync files with other ecosystems (Synology, Windows, Android).

[–] potemkinhr@lemmy.ml 3 points 1 year ago

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
[–] potemkinhr@lemmy.ml 0 points 1 year ago (1 children)

Man I totally forgot about RSS, it died ages ago with the death of Google's client and never really stuck afterwards. Was just meaning to ask about a good client, this one looks like a no BS one that does it's job. Thanks!

view more: β€Ή prev next β€Ί