diff options
author | CodeforEvolution <secundaja@gmail.com> | 2020-08-09 16:44:11 -0500 |
---|---|---|
committer | CodeforEvolution <secundaja@gmail.com> | 2020-08-09 22:19:51 -0500 |
commit | 6f9571a805e715d38ad6f5c7594a7e829368d617 (patch) | |
tree | 40ccadbf0287ea9ad4da4ae477eed26b212c025e /src | |
parent | 966fe839eee2f25ec2ed548234c9edfe984ebcfa (diff) | |
download | nnn-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.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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) { |