aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar CodeforEvolution <secundaja@gmail.com>2020-08-09 16:44:11 -0500
committerGravatar CodeforEvolution <secundaja@gmail.com>2020-08-09 22:19:51 -0500
commit6f9571a805e715d38ad6f5c7594a7e829368d617 (patch)
tree40ccadbf0287ea9ad4da4ae477eed26b212c025e /src
parent966fe839eee2f25ec2ed548234c9edfe984ebcfa (diff)
downloadnnn-6f9571a805e715d38ad6f5c7594a7e829368d617.tar.gz
Haiku: General fixup, add icon, add rdef file
- Add a native vector icon for Haiku (it hasn't been Haiku-ified yet however) - Add a rdef file (specifies application metadata) - Add clipboard support, notififcation support, and basic nuke support - Fix support for fortunes on Haiku ("-s" option is not available on Haiku) - Cleanup Haiku recipe
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 975fe72..c6f75cb 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -4446,7 +4446,11 @@ static void show_help(const char *path)
}
if (g_state.fortune && getutil("fortune"))
+#ifndef __HAIKU__
pipetof("fortune -s", fp);
+#else
+ pipetof("fortune", fp);
+#endif
start = end = helpstr;
while (*end) {