schmonz.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Search results for tag #macos

[?]Carson Chittom » 🌐
@carson@social.chittom.family

Huh. I knew that Postscript support had been (foolishly) removed from macOS' Preview.app, but apparently at some point after that the pstopdf converter was removed as well. I used to use this to read manpages in a nicer format than a Terminal window.

Oddly, man -t ps (i.e., output Postscript) still works fine; there's just no built-in way to open the result.

#macos #postscript

    Jay 🚩 :runbsd: boosted

    [?]Stefano Marinelli » 🌐
    @stefano@mastodon.bsd.cafe

    Copying Remote Command Output to Your macOS Clipboard

    A small trick to copy command output from a remote ssh session directly into the local macOS clipboard, using OSC 52 and a tiny shell script.

    it-notes.dragas.net/2026/05/26

      [?]IT Notes - https://it-notes.dragas.net » 🤖 🌐
      @itnotes@snac.it-notes.dragas.net

      Copying Remote Command Output to Your macOS Clipboard

      I use Apple devices very often. Overall, I like macOS. Certainly more than Windows.

      One of the things I find extremely useful is a command I discovered not too long ago: pbcopy.

      pbcopy can be used to copy to the clipboard whatever it receives from standard input. For example, when I am in a shell, I often use a command like this:

      cat filename.md | pbcopy
      At that point I know that the content of the file is in the clipboard, and I can paste it wherever I need, calmly and without any additional steps.

      There is one limitation, though: this only works locally. It works when I am using my Mac and I want to copy something from the macOS shell.

      When I connect to a remote (*BSD, Linux, illumos based) server via ssh, pbcopy is not available. Or, more precisely, even if I create a command with the same name on the server, that command cannot directly talk to the clipboard of my Mac in the usual way.

      Luckily, modern terminal emulators have a few tricks available.

      I use iTerm2 for most of my ssh sessions and, once I realised how useful it would be to have something similar to pbcopy in remote sessions too, I created a small script that works both on Linux, the BSDs and illumox based OSes.

      The caveat is that the remote server cannot "magically" access the clipboard of my Mac. So the trick works because the remote command prints a special terminal escape sequence, and the local terminal emulator interprets it.

      The sequence is called OSC 52. In short, it allows a program running inside the terminal to ask the terminal emulator to put some base64-encoded text into the local clipboard. This means that support depends on the terminal emulator I am using locally.

      I use iTerm2, which supports OSC 52. Other terminal emulators support it too, so the idea is not tied exclusively to iTerm2. However, Apple's default Terminal.app does not appear to support OSC 52, so I would not expect this specific solution to work there.

      So, in practice:

      • with iTerm2, it works;
      • with other OSC 52-compatible terminals, it should work (I haven't tested it, but should work with kitty, Ghostty, etc.);
      • with Apple's Terminal.app, at least at the time of writing, it should not.
      Before creating the command on the remote server, a specific iTerm2 option needs to be enabled:

      Settings -> General -> Selection -> Applications in terminal may access clipboard

      This option allows programs running inside the terminal to access the clipboard through escape sequences.

      Of course, this has security implications. A program running in the terminal, including a program running on a remote server through ssh, may be able to write to the local clipboard. For my use case this is acceptable, but it is worth knowing what is happening.

      All I need to do is create a command, a small sh script. I log into the server where I want to create the command. In my case, I usually create a file called /usr/local/bin/pbcopy with the following content:

      #!/bin/sh
      printf '\033]52;c;%s\a' "$(base64 | tr -d '\n')"
      Then I make it executable:

      chmod a+rx /usr/local/bin/pbcopy
      From that moment on, I can use pbcopy on the remote server too, piping another command into it:

      cat filename.md | pbcopy
      The content will not end up in the clipboard of the remote server. It will end up in the local clipboard of my Mac, because iTerm2 receives the OSC 52 sequence and updates the macOS clipboard.

      https://it-notes.dragas.net/2026/05/26/copying-remote-command-output-to-your-macos-clipboard/


        [?]Chris Mackay 🇨🇦 » 🌐
        @tantramar@zeroes.ca

        Ladies and germs, @bbedit 16.0 is out! I repeat: 16.0 has been released.

        Update and/or purchase accordingly. This app has been a daily-driver for me since 1994 or ’95. barebones.com

        BBEdit’s macOS app icon — a large letter B set against a checked-diamond with a wrap-around checked bar

        Alt...BBEdit’s macOS app icon — a large letter B set against a checked-diamond with a wrap-around checked bar

          [?]Christian Kruse » 🌐
          @cjk@chaos.social

          🥳 Gitte 0.4.0 is out!

          Highlights:
          - New mainline concept, „Sync with mainline"
          - Revert commits directly from Gitte
          - Partial staging for untracked files, stage/unstage via context menu, Enter or double-click
          - New additive line selection mode
          - Warning when pushing to a remote that is ahead
          - Ignore whitespace in diffs

          Plus UI polish, overhauled menus, and macOS fixes.

          Linux: flathub.org/en/apps/de.wwwtech
          macOS: gitlab.com/dehesselle/gitte_ma
          Repo: codeberg.org/ckruse/Gitte

            [?]TelH90 » 🌐
            @kkarhan@c.im

            @navi @wizzwizz4 @kimapr SystemD organizes daemons as services and adds quality of life features like granular via .

            - Once you get i.to the position of herding 10.000+ VMs on 1000+ servers in 3 datacenters each, you gotta embrace that when you have to find out why something is broken.

            Or the harshest critic on I'd say is that systemd is a ('s system!) clone that is swapping -isms for -isms…

            Again: I recommend Benno Rice's talk on that!
            youtube.com/watch?v=o_AIw9bGogo

              [?]Daniel Terhorst-North » 🌐
              @tastapod@mas.to

              So the new update is to enable to make money by shoving ads in maps and to enable Apple to make money by hiking subscriptions in the App Store?

              Let me just rush off and install that bad boy.

                [?]OSNews » 🤖 🌐
                @osnews@mstdn.social

                How fast is a macOS VM, and how small could it be?

                To assess how small a macOS VM could be, I ran the same VM of macOS 26.4.1 on progressively smaller CPU core and memory allocations, using my virtualiser Viable. The VM’s display window was set to a standard 1600 x 1000, and I ran Safari through its paces and performed some lightweight everyday tasks, including Storage analysis in Setting

                osnews.com/story/144876/how-fa

                  /home/rqm boosted

                  [?]𝙹𝚘𝚎𝚕 𝙲𝚊𝚛𝚗𝚊𝚝 ♑ 🤪 » 🌐
                  @joel@gts.tumfatig.net

                  Have a #ThinkPad running #OpenBSD and #Xfce look like #macOS: I stole someone else's font rendering trick and lost time doing this.

                  An Xfce session screenshot. A Librewolf instance is visible side to side with a Thunar window and an Alacritty  one. The terminal runs htop and fastfetch.

                  Alt...An Xfce session screenshot. A Librewolf instance is visible side to side with a Thunar window and an Alacritty one. The terminal runs htop and fastfetch.

                    🗳

                    [?]Jonathan Perkin » 🌐
                    @jperkin@federate.me.uk

                    I'm considering bumping the macOS requirements for my binary package repository available at pkgsrc.smartos.org/install-on- again.

                    There's already a bunch of packages missing because they have newer C++ requirements than Xcode 15.4 supports.

                    What OS are folks running?

                    macOS 14 Sonoma:3
                    macOS 15 Sequoia:15
                    macOS 26 Tahoe:10

                    Closed

                      [?]Jon S. von Tetzchner » 🌐
                      @jon@social.vivaldi.net

                      32 years ago I started working on my first browser, Opera. I left Opera in 2011, but two years later I co-founded Vivaldi. Thus I have been making browsers now for 32 years, with a short break there between 2011 and 2013.

                      I have always felt that this work is important and no less today than before as more and more of you see the importance of alternatives to Big Tech.

                      Vivaldi is a European company with headquarters in Norway, servers in Iceland and team in Norway, Iceland, across Europe, Japan and a couple in the US.

                      We try our best to adapt to your needs. We build powerful browsers, with a lot of flexibility.

                      I welcome you to try us out and share with your friends!

                      vivaldi.com

                        [?]OSNews » 🤖 🌐
                        @osnews@mstdn.social

                        Why do Macs ask you to press random keys when connecting a new keyboard?

                        You might have seen this, one of the strangest and most primitive experiences in macOS, where you’re asked to press keys next to left Shift and right Shift, whatever they might be.

                        Perhaps I can explain.
                        ↫ Marcin Wichary

                        It seems pretty obvious to me that's what it was for, but I guess man

                        osnews.com/story/144766/why-do

                          [?]JdeBP » 🌐
                          @JdeBP@mastodonapp.uk

                          @Wraithe

                          That's your reproduction problem, right there.

                          mastodonapp.uk/@JdeBP/11637518

                          @cstross

                          Jay 🚩 :runbsd: boosted

                          [?]JdeBP » 🌐
                          @JdeBP@mastodonapp.uk

                          Here are some things that one can add to the analysis of the MacOS TCP timeout clock freeze bug.

                          The code for calculate_tcp_clock() in XNU was changed in May 2025. Older versions of this function (e.g. in xnu-11417) worked quite differently and wouldn't have stopped ticking the clock at 32-bit unsigned integer wraparound.

                          None of , , nor share this exact way of doing TCP timeout processing with .

                          FreeBSD does not have a tcp_now and works off the global 32-bit ticks variable. OpenBSD effectively works off the kernel's system clock, too, but with a randomized offset, and does 64-bit unsigned modular arithmetic. NetBSD uses a distinct 32-bit unsigned tcp_now counter that it simply increments by 1 at regular intervals, and does modular arithmetic subtraction.

                          photon.codes/blog/we-found-a-t

                              Jay 🚩 :runbsd: boosted

                              [?]JdeBP » 🌐
                              @JdeBP@mastodonapp.uk

                              Here are some things that one can add to the analysis of the MacOS TCP timeout clock freeze bug.

                              The code for calculate_tcp_clock() in XNU was changed in May 2025. Older versions of this function (e.g. in xnu-11417) worked quite differently and wouldn't have stopped ticking the clock at 32-bit unsigned integer wraparound.

                              None of , , nor share this exact way of doing TCP timeout processing with .

                              FreeBSD does not have a tcp_now and works off the global 32-bit ticks variable. OpenBSD effectively works off the kernel's system clock, too, but with a randomized offset, and does 64-bit unsigned modular arithmetic. NetBSD uses a distinct 32-bit unsigned tcp_now counter that it simply increments by 1 at regular intervals, and does modular arithmetic subtraction.

                              photon.codes/blog/we-found-a-t

                                [?]OSNews » 🤖 🌐
                                @osnews@mstdn.social

                                Mac OS X 10.0 Cheetah ported to Nintendo Wii

                                Since its launch in 2007, the Wii has seen several operating systems ported to it: Linux, NetBSD, and most-recently, Windows NT. Today, Mac OS X joins that list.

                                In this post, I’ll share how I ported the first version of Mac OS X, 10.0 Cheetah, to the Nintendo Wii. If you’re not an operating systems expert or low-level engineer, you’re in good co

                                osnews.com/story/144756/mac-os

                                  [?]John-Mark Gurney [he/they] » 🌐
                                  @encthenet@flyovercountry.social

                                  Has anyone made a self contained Time Machine backup server (that runs on FreeBSD)? It looks like the old ways of backing up over the network finally broke, and I can't fool MacOS anymore by using a sparse disk image like I have for years.

                                  I don't want to have to configure and install samba, I just want something that works and is small and self contained.

                                    Jay 🚩 :runbsd: boosted

                                    [?]Jay 🚩 :runbsd: » 🌐
                                    @jaypatelani@bsd.network

                                    [?]Tim Bray 🇨🇦 » 🌐
                                    @timbray@cosocial.ca

                                    1. You have a Mac laptop with an outboard Bluetooth keyboard. It’s asleep.
                                    2. You wake up the Mac by hitting the Touch ID on the laptop keyboard.
                                    3. The Mac is annoyingly slow at starting to respond to keystrokes on the outboard. Several seconds, sometimes.

                                    How to fix:

                                    1. Hit any key on the BT keyboard. The Mac will start waking up.
                                    2. Now hit the TouchID to get signed in.
                                    3. Hey presto, the Mac is already listening to the BT.

                                    Thank you for coming to my TED talk.

                                      [?]Thomas Adam » 🌐
                                      @thomasadam@bsd.network

                                      Hi all.

                                      Just putting the feelers out as I'd love to know how many folks are using got on MacOs.

                                      @teajaygrey does an amazing job every time I make a release of gameoftrees portable, but I could do with knowing how many of you are using it.

                                      I made a change in the 0.123 release to fix socket handling for services such as gotwebd, which is good, but it's telling that it's taken this long, so I wonder how many users we have.

                                      Let me know -- you can always email me at: thomas.adam22@gmail.com

                                      Please boost this as much as possible, I'd appreciate it.

                                        [?]vga256 » 🌐
                                        @vga256@mastodon.tomodori.net

                                        ahahah til that not only does Pangea Software still exist, but that @jorio source ported Nanosaur to modern MacOS and it works *great*

                                        play here:
                                        jorio.itch.io/nanosaur

                                        pangeasoft:
                                        pangeasoft.net/nano/screenshot

                                        A screenshot of Nanosaur Extreme running on a modern version of macOS. It shows a raptor with a jetpack and lasers running away from a t-rex.

                                        Alt...A screenshot of Nanosaur Extreme running on a modern version of macOS. It shows a raptor with a jetpack and lasers running away from a t-rex.

                                          [?]OSNews » 🤖 🌐
                                          @osnews@mstdn.social

                                          Run this random script in the terminal to block Apple’s macOS Tahoe update notification spam

                                          Are you not at all interested in upgrading to macOS Tahoe, and getting annoyed at the relentless notification spam from Apple trying to trick you into upgrading?

                                          The secret? Using device management profiles, which let you enforce policies on Macs in

                                          osnews.com/story/144511/run-th

                                            [?]Johannes Link » 🌐
                                            @jlink@det.social

                                            @glyph @xgranade Hard booting has always been possible, so far. Sometimes the audio test dialogue just refuses to go into background and prevents me from doing anything on the machine. Latest , 2022 hardware, latest Zoom.

                                              Back to top - More...