feat(gnome-console): add image and file path pasting support

- Implemented detection of clipboard content types (text, files, and images).
- Added support for pasting file paths and temporary image paths.
- Ensured plain text pasting remains compatible with security checks.
This commit is contained in:
Harald Hoyer 2025-07-04 16:47:17 +02:00
parent b23f555241
commit 45cb8db57f
2 changed files with 232 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ ... }:
final: prev: {
gnome-console = prev.gnome-console.overrideAttrs (prevAttrs: {
patches = (prevAttrs.patches or [ ]) ++ [
./gnome-console-Add-image-and-file-path-pasting-support-for.patch
];
});
}