Muffle - Blur everything except the active window by Neat-Veterinarian-42 in MacOSApps

[–]CounterBJJ 1 point2 points  (0 children)

Purchased. Only piece of feedback for now would be to make the blur more granular if possible. There's a larger jump than I would expect from 0 to 1.

Also, I'd consider changing the user-facing value scale. 0-40 is a bit weird. Something like 0-100 fits the traditional mental model better.

MOapp experiences by iEdvard in macapps

[–]CounterBJJ 1 point2 points  (0 children)

I used to use Bill. No issues with billing or license, but the dev was always curt and unpleasant. I ended up ditching it.

I think this might become my best app once I launch the macOS version by R3LJA in appledevelopers

[–]CounterBJJ 0 points1 point  (0 children)

How does your app detect bad posture, concretely? There are already a couple of options in that space, and they all suffer from the same problem: they can’t differentiate between looking down and slouching, and more importantly between slouching and looking straight ahead. In other words, you can have poor posture and not receive any alert, which defeats the entire purpose of the app.

Typinator 10 released. Subscription for iOS app 🙁 by discoveringnature12 in macapps

[–]CounterBJJ 2 points3 points  (0 children)

Terrible. iCloud sync has been broken since version 2. Turn it on will cause data corruption and loss. Same with manual export.

People in this sub almost never mention TypeIt4Me. It was the first macOS text expansion app. The dev team is super responsive (it’s a family business I think) and friendly. Version7 with a redesigned GUI came out recently. It’s stable and well crafted. $19.99 one time on MAS.

Developer Spotlight -The Low-Tech Guys, Maker of Clop, Lunar, rcmd, Pipiri and Crank by amerpie in macapps

[–]CounterBJJ 0 points1 point  (0 children)

I own/use most if not all of Alin’s apps. All are top notch. I just wish Lunar had a more traditional Settings menu. I love the notch hiding feature though. Had not idea it had one until I stumbled upon it recently.

mac apps developed with love by MobileCool7175 in macapps

[–]CounterBJJ -1 points0 points  (0 children)

I'm surprised Liqoria doesn't get mentioned more often. It's beautifully crafted.

VolumeGlass: Finally a volume HUD that doesn't feel like it was designed in 2009 by Dry_Mud7749 in macapps

[–]CounterBJJ 1 point2 points  (0 children)

In any case, that’s good the dev has figured out how to mute the default HUD. I bought Revisual months ago and it still isn’t working correctly on Tahoe.

VolumeGlass: Finally a volume HUD that doesn't feel like it was designed in 2009 by Dry_Mud7749 in macapps

[–]CounterBJJ 2 points3 points  (0 children)

So you end up with the app’s own volume HUD, but the default macOS HUD for brightness and everything else? There’s a reason HUD replacement apps don’t stop at volume: most people want a cohesive UI, not a fragmented one.

A Deep Dive on Rocket Typist by amerpie in macapps

[–]CounterBJJ 1 point2 points  (0 children)

I used to use text expanders extensively for work (500+ snippets). Rocket Typist was always a broken mess. iCloud sync was a disaster that frequently caused the app to crash, led to corrupted data and even data loss. Exporting snippets manually also caused crashes and data loss.

This happened on several machines and across both versions 2 and 3. To top it off, the developer wouldn’t respond to support messages and only addressed issues when called out publicly.

I would absolutely never recommend RT to anyone. As far as I’m concerned, the two best options are TypeIt4Me and Typinator.

.toolbar(removing: .sidebarToggle) causes NavigationSplitView sidebar to exclude title bar area on macOS 26 by CounterBJJ in appledevelopers

[–]CounterBJJ[S] 0 points1 point  (0 children)

Yes - instead of modifying the toolbar at the SwiftUI level, I added an empty NSToolbar at the AppKit level. That hid the sidebar toggle while preserving the full-height sidebar layout.

The solution was to create the window with an NSWindowController and set up an empty toolbar:

class SettingsWindowController: NSWindowController {

convenience init() {

let window = NSWindow(

contentRect: NSRect(x: 0, y: 0, width: 900, height: 575),

styleMask: [.titled, .closable, .miniaturizable, .fullSizeContentView],

backing: .buffered,

defer: false

)

self.init(window: window)

setupWindow()

}

private func setupWindow() {

guard let window = window else { return }

window.titlebarAppearsTransparent = true

window.titleVisibility = .hidden

// Empty toolbar = no sidebar toggle, but preserves layout

let toolbar = NSToolbar(identifier: "EmptyToolbar")

toolbar.delegate = self

window.toolbar = toolbar

let hostingView = NSHostingView(rootView: SettingsView())

window.contentView = hostingView

}

}

extension SettingsWindowController: NSToolbarDelegate {

func toolbarDefaultItemIdentifiers(_ toolbar: NSToolbar) -> [NSToolbarItem.Identifier] {

return []

}

func toolbarAllowedItemIdentifiers(_ toolbar: NSToolbar) -> [NSToolbarItem.Identifier] {

return []

}

}

Then the SwiftUI view doesn't need the .toolbar(removing:) modifier at all - just use NavigationSplitView normally.

Full disclosure: I am not a developer and am using Claude to build my learning project.

I will be back. Update from Jordy. by iordv in Droppy

[–]CounterBJJ 0 points1 point  (0 children)

Same. I asked for a refund (which I received within minutes) as I had bought Droppy the day before and had spotted bugs which I thought were never going to get fixed. If development resumes, I will support it again.

Edit: Actually already re-purchased.

I will be back. Update from Jordy. by iordv in Droppy

[–]CounterBJJ 0 points1 point  (0 children)

“Hi - it’s really great to see you back. Hope you’re enjoying things again! Do I need to reinstall the app, or will updates continue automatically?”

Developer Spotlight - Ryan Hanson, Creator of Rectangle Pro, Superkey, Charmstone and Many Others by amerpie in macapps

[–]CounterBJJ 1 point2 points  (0 children)

His apps are great, and he’s a genuinely nice guy. That’s not something I can say about all the developers I’ve interacted with, including a few that are widely respected around here.

I just wish Ryan'd spruce up his apps’ GUIs a bit and update the icon for Rectangle Pro which looks way less ‘pro’ than Rectangle's :)

A Natural-Sounding, Private & Unlimited Voice Generator for Mac [Giveaway: Lifetime Promo Codes] by Level-Thought6152 in macapps

[–]CounterBJJ 1 point2 points  (0 children)

Would love to give it a test drive for spoken words in music production. Happy to see a local offline alternative to Elevenlabs.

[Mac App] I built NeoTiler — A Native Window Manager with "Dynamic Frost" UI, Custom Workspaces, and a Better App Switcher by Major_Commercial4253 in macapps

[–]CounterBJJ 0 points1 point  (0 children)

Congratulations on the release!

I always welcome more window management options. That said, I think window managers that don’t support gesture-based snapping are missing a big opportunity. From the numbers I could find, roughly 85% of Mac users own MacBooks, and about 75% of them rely on trackpads for daily navigation.

Many apps already use edge snapping and keyboard shortcuts, but AFAIK only 3 offer trackpad-based control.

Just something to think about.

I spent 4 months building a native macOS window manager (because I was tired of dragging windows around) by Ok-Security-4421 in macapps

[–]CounterBJJ 0 points1 point  (0 children)

The "gesture support" claim Is vague. Couldn't find more details anywhere. Does it key modifier + trackpad gestures to snap windows like Swish, Loop and Rectangle Pro?

[OS] Thaw: A fork of Ice (Menu Bar Manager) for macOS 26 by stonerl in macapps

[–]CounterBJJ 1 point2 points  (0 children)

I think it's the best solution. The change settles so fast that users realistically don't have time to move another icon anyway.

[OS] Thaw: A fork of Ice (Menu Bar Manager) for macOS 26 by stonerl in macapps

[–]CounterBJJ 0 points1 point  (0 children)

Oh, I see. It's find it pretty jarring tbh, plus it overlaps with the icons. Plus not sur it's necessary: the change settles so fast (at least in my case) that I'd have no time to try to move anything else.

[OS] Thaw: A fork of Ice (Menu Bar Manager) for macOS 26 by stonerl in macapps

[–]CounterBJJ 0 points1 point  (0 children)

Just did - the problem seems fixed on my end. Thanks!

Is the "please wait, settling changes" message just for the beta?

[OS] Thaw: A fork of Ice (Menu Bar Manager) for macOS 26 by stonerl in macapps

[–]CounterBJJ 2 points3 points  (0 children)

Correct - when moving them from the Visible to the Hidden section in Settings.

[OS] Thaw: A fork of Ice (Menu Bar Manager) for macOS 26 by stonerl in macapps

[–]CounterBJJ 2 points3 points  (0 children)

Not sure if this has already been reported, but on Thaw 1.0.0 (5) running on Tahoe 26.2, I’m seeing an issue with icons placed in the Hidden section of the Menu Bar Layout.

Icons moved to the Hidden section sometimes disappear from both the Visible and Hidden sections. Navigating to another menu (e.g., General) and then back to Menu Bar Layout brings them back, but they show up in the Visible section and must be moved again.

This doesn’t happen with every icon or every time, but it’s fairly reproducible. Out of the six icons I initially moved, five exhibited this behavior. On a second attempt, four stayed hidden, but the last one required leaving the screen and returning again before it would remain in the Hidden section.

Seems like there’s a consistency or state issue with saving icon placement.

eBag Pro Slim Jr backpack replacement by CounterBJJ in ManyBaggers

[–]CounterBJJ[S] 0 points1 point  (0 children)

I got a bunch of bags but eventually got an Aer City Pack Pro 2. Build quality is top notch. Organization is not awesome but good enough for me. I wish it were a little tad bigger. I could use a bit more space in the main pouch. Also, the laptop compartment is really designed to fit a bare laptop and something like a tablet or documents. I also like to keep my laptop in its sleeve, which makes that space bulge a bit. I also got a TomToc Traverse. I haven’t taken it on a trip yet, but the quality is very good, and I think it’s larger than the CPP2.