Dolphin: Difference between revisions

Added useful dolphin info
 
 
(13 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{disambiguation|Dolphin Emulator}}
Dolphin is the [[KDE]] desktop's file manager. When using dolphin without KDE, you may want to install some optional dependencies.
Dolphin is the [[KDE]] desktop's file manager. When using dolphin without KDE, you may want to install some optional dependencies.


== Troubleshooting ==
== Troubleshooting ==


=== Wayland ===
=== '''Open with menu fix''' ===
By default, dolphin by itself is not packaged with wayland support. This may cause you to get a error like this:
When using dolphin on other Desktop or Window Managers, the Open With menu may not show any applications.


''qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""''
A comprehensive solution can be found with [https://github.com/rumboon/dolphin-overlay rumboon's dolphin-overlay], but a more straight-forward fix would be to add the following line to your configuration file:
 
{{File|3=environment.etc."xdg/menus/applications.menu".source = "${pkgs.kdePackages.plasma-workspace}/etc/xdg/menus/plasma-applications.menu";|name=/etc/nixos/configuration.nix|lang=nix}}
To get wayland support, add the following package:{{file|/etc/nixos/configuration.nix|nix|<nowiki>
environment.systemPackages = with pkgs; [ kdePackages.qtwayland ];
</nowiki>}}


=== Icons ===
=== Icons ===
Line 21: Line 20:
=== KIO-Fuse ===
=== KIO-Fuse ===
If you need to mount network shares you can use KIO-Fuse: {{file|/etc/nixos/configuration.nix|nix|<nowiki>
If you need to mount network shares you can use KIO-Fuse: {{file|/etc/nixos/configuration.nix|nix|<nowiki>
environment.systemPackages = with pkgs; [  
environment.systemPackages = with pkgs; [
    kdePackages.kio # needed since 25.11
     kdePackages.kio-fuse #to mount remote filesystems via FUSE
     kdePackages.kio-fuse #to mount remote filesystems via FUSE
     kdePackages.kio-extras #extra protocols support (sftp, fish and more)
     kdePackages.kio-extras #extra protocols support (sftp, fish and more)
];
];
</nowiki>}}
</nowiki>}}
=== Install ===
{{File|3=environment.systemPackages = with pkgs; [
    kdePackages.dolphin # This is the actual dolphin package
];|name=/etc/nixos/configuration.nix|lang=nix}}


=== File previews ===
=== File previews ===
https://wiki.archlinux.org/title/Dolphin#File_previews
https://wiki.archlinux.org/title/Dolphin#File_previews
[[Category:Applications]]
[[Category:File Manager]]