Dolphin: Difference between revisions

From NixOS Wiki
Added useful dolphin info
 
Klinger (talk | contribs)
Tags: Mobile edit Mobile web edit
 
(One intermediate revision by one other user not shown)
Line 4: Line 4:


=== Wayland ===
=== Wayland ===
By default, dolphin by itself is not packaged with wayland support. This may cause you to get a error like this:  
By default, dolphin by itself is not packaged with wayland support. This may cause you to get an error like this:  


''qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""''
''qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""''
Line 29: Line 29:
=== 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]]

Latest revision as of 17:46, 6 September 2024

Dolphin is the KDE desktop's file manager. When using dolphin without KDE, you may want to install some optional dependencies.

Troubleshooting

Wayland

By default, dolphin by itself is not packaged with wayland support. This may cause you to get an error like this:

qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in ""

To get wayland support, add the following package:

/etc/nixos/configuration.nix
environment.systemPackages = with pkgs; [ kdePackages.qtwayland ];

Icons

By default, dolphin by itself is not packaged with support for svg icons. This may result in blank icons.

To fix it, simply add the following package:

/etc/nixos/configuration.nix
environment.systemPackages = with pkgs; [ kdePackages.qtsvg ];

KIO-Fuse

If you need to mount network shares you can use KIO-Fuse:

/etc/nixos/configuration.nix
environment.systemPackages = with pkgs; [ 
    kdePackages.kio-fuse #to mount remote filesystems via FUSE
    kdePackages.kio-extras #extra protocols support (sftp, fish and more)
];

File previews

https://wiki.archlinux.org/title/Dolphin#File_previews