Last active
January 4, 2025 11:08
-
-
Save ShaunLawrie/4a62f8d75bc9786999da31b3b3db31fa to your computer and use it in GitHub Desktop.
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
#requires -Modules @{ModuleName='PwshSpectreConsole'; ModuleVersion='2.1.2'}, @{ModuleName='PSBlueSky'; ModuleVersion='0.6.0'} | |
# REQUIRES WINDOWS TERMINAL PREVIEW 1.22+ FOR SIXEL https://devblogs.microsoft.com/commandline/windows-terminal-preview-1-22-release/ | |
# Or another sixel capable terminal emulator but I've only tested on Windows Terminal Preview so far | |
# REQUIRES BLUE SKY CREDS TO BE SETUP | |
$timeline = Get-BskyTimeline -Limit 15 | |
$formattedPosts = @() | |
foreach ($post in $timeline) { | |
$author = Get-BskyProfile $post.Author | |
# Format some chunks of text | |
$avatarWidth = 15 | |
$authorImage = Get-SpectreImage $author.Avatar -MaxWidth $avatarWidth | |
$likes = ":red_heart: [red]$($post.Liked)[/]" | |
$authorDisplayName = "[white]$($post.AuthorDisplay.Trim())[/]" | |
$authorLink = "[grey69 link=$($post.URL)]@$($post.Author)[/]" | |
$postDate = "[grey42]$($post.Date)[/]" | |
# Format the post, images require PSBlueSky to add another property for image links | |
$formattedPost = @($post.Text) | |
if ($post.Image) { | |
$formattedPost += Write-SpectreHost "" -PassThru | |
$formattedPost += @( | |
Get-SpectreImage $post.Image -MaxWidth 50 | |
) | |
} | |
$panelHeight = [Math]::Max(6, ($formattedPost | Format-SpectreRows | Format-SpectrePanel | Get-SpectreRenderableSize).Height) | |
$formattedPosts += [ordered]@{ | |
Image = ($authorImage | Format-SpectrePanel -Border None | Format-SpectrePadded -Top 1 -Bottom 1 -Left 0 -Right 0) | |
Post = $formattedPost | Format-SpectreRows | Format-SpectrePanel -Title "[white] $likes $authorDisplayName $authorLink $postDate [/]" -Color DeepSkyBlue3_1 -Height $panelHeight -Expand | |
} | |
$formattedPosts += [ordered]@{ Image = ""; Post = "" } # spacing hack | |
} | |
$formattedPosts | Format-SpectreTable -HideHeaders -Border None |
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
# Uses the raw output from /xrpc/app.bsky.feed.getTimeline | |
$feed = Get-Content -Path "timeline.json" | ConvertFrom-Json | |
$feed | Where-Object { $_.reply } | ForEach-Object { | |
@{ | |
Value = ("[grey46]@$($_.reply.root.author.handle) - [/]$($_.reply.root.record.text)" | Format-SpectrePanel -Expand) | |
Children = @( | |
@{ | |
Value = ("[grey46]@$($_.post.author.handle) - [/]$($_.post.record.text)" | Format-SpectrePanel -Expand -Color Grey62) | |
} | |
) | |
} | Format-SpectreTree; Write-Host "" | |
} |
Author
ShaunLawrie
commented
Nov 2, 2024
I don't have anything set up to test it but this looks awesome. If you include the ability to click a post and open it in a browser that would be ideal because then I could reply or view other image content.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment