We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b140f73 commit 86c1b93Copy full SHA for 86c1b93
CHANGELOG.md
@@ -1,6 +1,7 @@
1
# next
2
- `contrib/qbpm.desktop`: add `MimeType` and `Keywords`, fix incorrect formatting of `Categories`
3
- allow help text to be slightly wider to avoid awkward line breaks
4
+ - macOS: fix detection of qutebrowser binary in /Applications
5
6
# 1.0rc4
7
- `choose`: support `walker`, `tofi`, and `wmenu`
src/qbpm/paths.py
@@ -7,7 +7,7 @@
8
def qutebrowser_exe() -> str:
9
macos_app = "/Applications/qutebrowser.app/Contents/MacOS/qutebrowser"
10
- if platform == "darwin" and Path(macos_app).exists():
+ if platform.system() == "Darwin" and Path(macos_app).exists():
11
return macos_app
12
else:
13
return "qutebrowser"
0 commit comments