Browse Source

Plugin extoggle to toggle executable status

master
Arun Prakash Jana 5 years ago
parent
commit
e82f6d02cd
No known key found for this signature in database GPG Key ID: A75979F35C080412
2 changed files with 15 additions and 0 deletions
  1. +1
    -0
      plugins/README.md
  2. +14
    -0
      plugins/exetoggle

+ 1
- 0
plugins/README.md View File

@@ -13,6 +13,7 @@ The currently available plugins are listed below.
| dups | sh | find, md5sum,<br>sort uniq xargs | List non-empty duplicate files in current dir | | dups | sh | find, md5sum,<br>sort uniq xargs | List non-empty duplicate files in current dir |
| checksum | sh | md5sum,<br>sha256sum | Create and verify checksums | | checksum | sh | md5sum,<br>sha256sum | Create and verify checksums |
| dragdrop | sh | [dragon](https://github.com/mwh/dragon) | Drag/drop files from/into nnn | | dragdrop | sh | [dragon](https://github.com/mwh/dragon) | Drag/drop files from/into nnn |
| exetoggle | sh | chmod | Toggle executable status of hovered file |
| fzcd | sh | fzy/fzf<br>(optional fd) | Change to the directory of a fuzzy-selected file/dir | | fzcd | sh | fzy/fzf<br>(optional fd) | Change to the directory of a fuzzy-selected file/dir |
| fzy-open | sh | fzy, xdg-open | Fuzzy find a file in dir subtree and edit or xdg-open | | fzy-open | sh | fzy, xdg-open | Fuzzy find a file in dir subtree and edit or xdg-open |
| getplugs | sh | curl | Update plugins | | getplugs | sh | curl | Update plugins |


+ 14
- 0
plugins/exetoggle View File

@@ -0,0 +1,14 @@
#!/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

Loading…
Cancel
Save