Fix KDE Dolphin 'Open with'

Published on: Mon May 04 2026


DOLPHIN FILE MANAGER

Fix no applications showing in “open with” menu

Problem screenshot:

2026-03-30-14-18-08.png


Arch Linux fix

First, grab the missing menu package:

sudo pacman -S archlinux-xdg-menu

Make it permanent (by shell)

For Fish:

set -Ux XDG_MENU_PREFIX arch-
kbuildsycoca6 --noincremental

For Bash/Zsh:

Add to your ~/.zshrc or ~/.bashrc:

export XDG_MENU_PREFIX=arch-

Then run:

source ~/.zshrc  # or ~/.bashrc
kbuildsycoca6 --noincremental

The “Global” fix:

Add to /etc/environment

XDG_MENU_PREFIX=arch-

And that’s it

2026-03-30-14-22-20.png