479 questions
0 votes
1 answer
58 views
Set a QApplication on top of the screen with reserved space (like a taskbar)
General overview I try to set just a minimal taskbar (like Polybar or i3bar, or any task bar you know). The constraint are the folowing ones: It should have a dedicate space to avoid overlaping with ...
0 votes
1 answer
127 views
Embedding AppleScript in Bash Script
I have a working AppleScript for pinning a given app the dock: set theAppPath to "/Applications/Adobe Acrobat Reader.app" try set theShellScript to "defaults write com.apple.dock ...
0 votes
1 answer
235 views
Avalonia is not showing correct app icon on MacOS
I have a problem with AvaloniaUI on MacOS, where the dock icon isn't what I have specified, it's always an exec icon like that. Changing the icon file doesn't help at all. I checked it and it's a ...
0 votes
0 answers
76 views
Optimal Method for Mounting CIFS NAS in Docker: Bind Mounts vs. Volumes
I'm currently integrating a CIFS-based NAS into my Docker environment and have encountered two primary methods for mounting: Bind Mounts: Mounting the CIFS share on the host system and then using a ...
1 vote
1 answer
734 views
AWS Fargate & Fargate spot
I have some containers running on ECS Fargate now i have moved them to ECS Fargate Spot. while creating Service i add another capacity provider as fargate spot and their configs are as follows. for ...
1 vote
1 answer
210 views
How to set dock tabs pinned in Avalonia when app starts?
I am a beginner in using Avalonia.I am using Dock UI in my Avalonia Application,I want to make some dock taps autohide(pinned?) at initial startup,I just don't know how to make it works? I have tried ...
-1 votes
1 answer
328 views
How to get the width of the macOS dock?
I want/need to place a dock-alike window in the "empty" areas left or right of the macOS 14+ system dock, when located at the bottom. Getting the height of the dock is easy, e.g. as shown ...
0 votes
0 answers
113 views
delphi devexpress how to dock Tform in dxdockpanel at runetime (SDI project)
I have an SDI project, I want to dock a form in TDxdocpanel dynamyqe in C# it's easy dxdocpanel.contols.add(myform); However in Delphi I find a lot of difficulty,especially with this error project ...
0 votes
1 answer
221 views
com.apple.dock.plist is changed in macOS14.0 and later
Currently, we are working on the enterprise project that using data in ~/Library/Preferences/com.apple.dock.plist to get detail design of the original Dock (as autohide, orientation). It still has ...
2 votes
1 answer
123 views
How add new options to the dock icon menu
There are some default options that appear when a macOS application in added to the dock like Quit, Hide, Show in Finder, etc. I want to add few more options to the dock menu for my Qt application. I'...
1 vote
1 answer
458 views
The LSUIElement key in Info.plist is being ignored (AvaloniaUI, net7.0-macos)
Currently, I am trying to create a cross-platform app with Avalonia. One criterion of the app is that it should run in the background without a Dock icon. When I publish the MacOS project with the TFM ...
0 votes
0 answers
108 views
Can I make a macOS app made of Python script behave in the Dock like normal apps do?
The executable inside my.app/Contents/MacOS directory is a Python script (app.py) containing: #!/usr/bin/python3 import os from wsgiref.simple_server import make_server with make_server(host=(host := ...
2 votes
2 answers
786 views
How to hide the Dock Icon in Jetpack Compose Desktop?
I want to create a compose desktop application that only lives in the tray, but doesn't show an app icon in the Windows Taskbar / macOS Dock. I started with the tutorial Tray application without ...
0 votes
1 answer
402 views
How to set an icon for an executable that isn't the app's main CFBundleExecutable?
I have some MacOS client/server software that originally installed as a folder containing two separate .app folders; one for the client, and one for the server. That worked fine, except that it meant ...
1 vote
0 answers
265 views
Multiple dock icons for single Electron app?
My Electron app has two modes, let's call them A and B.* When switching between the two modes, I'm creating a new BrowserWindow and changing the dock icon (see "What I've Tried" below). Is ...