Questions tagged [macos-ventura]

macOS Ventura (version 13) is the nineteenth major release of macOS.

macOS Ventura (version 13) is the nineteenth major release of macOS, Apple's desktop operating system for Macintosh computers. The successor to macOS Monterey, it was announced at WWDC 2022 on June 6, 2022. It is named after the city Ventura in California, following the home state naming system that started with OS X Mavericks.

323 questions
0
votes
0 answers

Shortcut for switching between Dark and Light mode

I am using Mac OS Ventura and would like to build a Shortcut for switching between Dark and Light mode. I came up with: but I cannot find a way to test if the variable curr_appearance has a specific value. The only two options are has any value and…
Antonio Sesto
  • 2,868
  • 5
  • 33
  • 51
0
votes
1 answer

UIBarButtonItem(title:image:primaryAction:menu:) for Mac Catalyst on macOS 13 (Ventura) is appearing disabled when primary action is nil

I've used UIBarButtonItem(title:image:primaryAction:menu:), with nil for primary action, and only a UIMenu for iOS / macOS and it has been working fine for iOS / iPadOS 14,15,16 and macOS 11 and 12. Now for macOS 13 (Ventura), where the navigation…
gbotha
  • 1,231
  • 17
  • 23
0
votes
1 answer

Start Screen Mirroring in Control Center with AppleScript

I want to start Screen Mirroring from my MacBook to my AppleTV with a keyboard shortcut. I used Automator's Recording function ("Watch Me Do") to record the three necessary clicks (open Control Center, click on Screen Mirroring, click on Apple TV).…
joschaf
  • 515
  • 2
  • 6
  • 14
0
votes
0 answers

Homebrew have to be reinstalled everyday

I install brew on my macOS Ventura, I use it and next day im trying to run brew again and it says brew command not found and I have to reinstall it... I just install it every time I need it...
0
votes
0 answers

Pass mouse events to applications behind a transparent Java UI in macOS Ventura

I have an application that works as a screen capture. It is built using Java and works well. I am aware of the JDK bug that doesn't allow to pass mouse events behind a transparent Java UI so we implemented a native library to serve as a workaround.…
ujin
  • 41
  • 1
0
votes
1 answer

Is there a syntax change in manpage for zsh vs bash?

I've recently wrote a manpage, which display properly in bash shell. However, in zsh the man return an error message: /bin/zsh: can't open input file: man. Is there a difference in man syntax between zsh and bash? Below is an shorten example. .\"…
0
votes
1 answer

Command docker-compose up gets stuck

I'm currently working in a custom project involving Docker and Jboss. The first 2/3 times that I run the command docker-compose up, the log gets stuck in different part of the build. After those 2/3 attempts, the command works correctly. I'm working…
nbaldr
  • 1
  • 4
0
votes
0 answers

SwiftUI: Parent of nested ScrollView doesn't receive phase “Ended” event on macos 13 Ventura

I'm trying to build a scrollable horizontal list (HStack) of scrollable vertical lists (VStack). Issue: The issue is that when scrolling horizontally on one of the vertical stacks, the phase ended event is not called on the parent. The parent…
0
votes
0 answers

MacOS Ventura, async network URLs and rate limits

I recently upgraded to MacOS Ventura and discovered that software I'd written in the past to scrape data from a webpage would no longer work. That code used initWithContentsOfURL to access and download a sequence of pages which my code would then…
0
votes
1 answer

Zsh not working since installing MacOS Ventura

My .zshenv: export ZDOTDIR=~/dotfiles export XDG_CONFIG_HOME=~/dotfiles/.config export MY_ENVIRONMENT="PERSONAL" My .zshrc in ~/dotfiles: zsh ${ZDOTDIR}/startup.sh then startup loads in a file called .zshrc.personal where I have all of my…
Raph117
  • 3,441
  • 7
  • 29
  • 50
0
votes
1 answer

BarcodeDetector not working on macOS Ventura

My Electron app works fine on macOS Monterey. On Ventura, following code doesn’t throw error but detectedBarcodes is always empty. const barcodeDetector = new BarcodeDetector({ formats: ["qr_code"] }) const detectedBarcodes = await…
sunknudsen
  • 6,356
  • 3
  • 39
  • 76
0
votes
0 answers

"make" command for Makefile no longer works after upgrading to ventura

I use a makefile in all my applications spanning across multiple languages as a uniform way of booting up my apps for whatever reason OSX Ventura broke the command "make" $ make dev make dev xcrun: error: invalid active developer path…
alilland
  • 2,039
  • 1
  • 21
  • 42
0
votes
1 answer

Problems escaping spaces in string variable with grep command and SU

macOS Ventura is apparently no longer letting us set the default Dock application items from root (command silently fails), so we are having to run in the user's space from our MDM script. Unfortunately, this means I have to chain a grep command…
0
votes
1 answer

Debugger in CLion on Macos Ventura not working

CLion 2022.2.4, Bundled cmake 3.23.3, Bundled lldb 14.0.6, Apple clang version 14.0.0 (clang-1400.0.29.102), macOS ventura 13.0. Since I updated the system, the debugger does not hit breakpoints anymore. The breakpoint turns gray, the tooltip says…
ManuelSchneid3r
  • 15,850
  • 12
  • 65
  • 103
0
votes
0 answers

Error running pyarmor obfuscated script on macos

When running my obfuscated python script(I used pyarmor free, Python3.9) on Mac(Intel, Ventura 13.0). On Mac I installed python3.9 using Homebrew. When running see this error: ImportError: dlopen(/Users/.../pytransform.so, 0x0002): Library not…