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:
parent
b23f555241
commit
45cb8db57f
2 changed files with 232 additions and 0 deletions
8
overlays/mods/default.nix
Normal file
8
overlays/mods/default.nix
Normal 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
|
||||
];
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue