mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-19 10:16:12 +03:00
linux: fix installation path of nautilus-python extension (#5469)
Fixes #5468
This commit is contained in:
@ -209,10 +209,11 @@ pub fn init(b: *std.Build, cfg: *const Config) !GhosttyResources {
|
|||||||
"share/kio/servicemenus/com.mitchellh.ghostty.desktop",
|
"share/kio/servicemenus/com.mitchellh.ghostty.desktop",
|
||||||
).step);
|
).step);
|
||||||
|
|
||||||
// Right click menu action for Nautilus
|
// Right click menu action for Nautilus. Note that this _must_ be named
|
||||||
|
// `ghostty.py`. Using the full app id causes problems (see #5468).
|
||||||
try steps.append(&b.addInstallFile(
|
try steps.append(&b.addInstallFile(
|
||||||
b.path("dist/linux/ghostty_nautilus.py"),
|
b.path("dist/linux/ghostty_nautilus.py"),
|
||||||
"share/nautilus-python/extensions/com.mitchellh.ghostty.py",
|
"share/nautilus-python/extensions/ghostty.py",
|
||||||
).step);
|
).step);
|
||||||
|
|
||||||
// Various icons that our application can use, including the icon
|
// Various icons that our application can use, including the icon
|
||||||
|
Reference in New Issue
Block a user