- Notification on cp, mv, rm completion
   - Copy file paths to system clipboard on select
   - Create (with parents), rename, duplicate (anywhere) files and dirs
-  - Launch GUI apps, run commands, spawn a shell
+  - Launch GUI apps, run commands, spawn a shell, toggle executable
   - Hovered file set as `$nnn` at prompt and spawned shell
   - Lock terminal (needs a locker)
 - Privacy-aware (no unconfirmed user data collection)
 
 | boom | Play random music from dir | sh | [moc](http://moc.daper.net/) |
 | dups | List non-empty duplicate files in current dir | sh | find, md5sum,<br>sort uniq xargs |
 | chksum | Create and verify checksums | sh | md5sum,<br>sha256sum |
-| chmodx | Toggle executable status of hovered file | sh | chmod |
 | diffs | Diff for selection (limited to 2 for directories) | sh | vimdiff |
 | dragdrop | Drag/drop files from/into nnn | sh | [dragon](https://github.com/mwh/dragon) |
 | fzcd | Change to the directory of a fuzzy-selected file/dir | sh | fzf/fzy<br>fd/fdfind/find |
 
     odir="$(autojump "$dir")"
     printf "%s" "0$odir" > "$NNN_PIPE"
 else
-    exit 1
+    printf "autojump missing"
+    read -r _
 fi
 
+++ /dev/null
-#!/usr/bin/env sh
-
-# Description: Toggle executable status of hovered file
-#
-# Shell: POSIX compliant
-# Author: Arun Prakash Jana
-
-if ! [ -z "$1" ]; then
-    if [ -x "$1" ]; then
-        chmod -x "$1"
-    else
-        chmod +x "$1"
-    fi
-fi
 
        return TRUE;
 }
 
+static bool xchmod(const char *fpath, mode_t mode)
+{
+       (S_IXUSR & mode) ? (mode &= ~(S_IXUSR | S_IXGRP | S_IXOTH)) : (mode |= (S_IXUSR | S_IXGRP | S_IXOTH));
+
+       return (chmod(fpath, mode) == 0);
+}
+
 static size_t get_fs_info(const char *path, bool type)
 {
        struct statvfs svb;
                  "cV  Move sel here%-10c^V  Copy/move sel as\n"
                  "cX  Delete sel%-13c^X  Delete entry\n"
                  "ce  Edit in EDITOR%-10cp  Open in PAGER\n"
-                 "ci  Archive entry%-0c\n"
+                 "ci  Archive entry%-11c*  Toggle exe\n"
                "1ORDER TOGGLES\n"
                  "cS  Disk usage%-14cA  Apparent du\n"
                  "cz  Size%-20ct  Time\n"
                        if (ndents)
                                copycurname();
                        goto begin;
-               case SEL_STATS:
+               case SEL_STATS: // fallthrough
+               case SEL_CHMODX:
                        if (ndents) {
                                mkpath(path, dents[cur].name, newpath);
-                               if (lstat(newpath, &sb) == -1 || !show_stats(newpath, &sb)) {
+                               if (lstat(newpath, &sb) == -1
+                                   || (sel == SEL_STATS && !show_stats(newpath, &sb))
+                                   || (sel == SEL_CHMODX && !xchmod(newpath, sb.st_mode))) {
                                        printwarn(&presel);
                                        goto nochange;
                                }
+
+                               if (sel == SEL_CHMODX)
+                                       dents[cur].mode ^= S_IXUSR;
                        }
                        break;
                case SEL_REDRAW: // fallthrough
 
        SEL_TOGGLEDOT,
        SEL_DETAIL,
        SEL_STATS,
+       SEL_CHMODX,
        SEL_ARCHIVE,
        SEL_FSIZE,  /* file size */
        SEL_ASIZE,  /* apparent size */
        { 'd',            SEL_DETAIL },
        /* File details */
        { 'D',            SEL_STATS },
+       /* Toggle executable status */
+       { '*',            SEL_CHMODX },
        /* Create archive */
        { 'i',            SEL_ARCHIVE },
        /* Toggle sort by size */