diff options
Diffstat (limited to '')
| -rw-r--r-- | TODO | 3 | ||||
| -rwxr-xr-x | mblaze-extras | 9 |
2 files changed, 3 insertions, 9 deletions
| @@ -1,6 +1,9 @@ | |||
| 1 | * Modify all dmenu-* scripts to optionally use another menu, like vis-menu (slmenu) | 1 | * Modify all dmenu-* scripts to optionally use another menu, like vis-menu (slmenu) |
| 2 | Do this by taking an optional $1 which is the name of the program to use | 2 | Do this by taking an optional $1 which is the name of the program to use |
| 3 | (optional $dir argument is removed: fix dmenu-bookmarks simply using cd) | 3 | (optional $dir argument is removed: fix dmenu-bookmarks simply using cd) |
| 4 | * Big problem: slmenu does not allow multiple selections; this is a problem | ||
| 5 | for my workflow for sel and for sfeed-menu (and sometimes for open-file) | ||
| 6 | * Solution: leave dmenu default option, use slmenu for a selected few aliases in .profile | ||
| 4 | 7 | ||
| 5 | * mblaze-extras: remove mmv, just use complete_mrefile=mail/... | 8 | * mblaze-extras: remove mmv, just use complete_mrefile=mail/... |
| 6 | 9 | ||
diff --git a/mblaze-extras b/mblaze-extras index 1a3b546..7a4fe8a 100755 --- a/mblaze-extras +++ b/mblaze-extras | |||
| @@ -7,7 +7,6 @@ | |||
| 7 | # Usage: mblaze-extras command | 7 | # Usage: mblaze-extras command |
| 8 | # List of commands: | 8 | # List of commands: |
| 9 | # get [filter] | 9 | # get [filter] |
| 10 | # mv [folder] | ||
| 11 | # pick [field] | 10 | # pick [field] |
| 12 | # save | 11 | # save |
| 13 | # scan [folder] | 12 | # scan [folder] |
| @@ -51,14 +50,6 @@ if [ -z "$1" ]; then | |||
| 51 | echo "Usage: mblaze-extras COMMAND" | 50 | echo "Usage: mblaze-extras COMMAND" |
| 52 | elif [ "$1" = "scan" ]; then | 51 | elif [ "$1" = "scan" ]; then |
| 53 | mbextra_scan $2 | 52 | mbextra_scan $2 |
| 54 | elif [ "$1" = "mv" ]; then | ||
| 55 | folder=$2 | ||
| 56 | if [ -n "$folder" ]; then | ||
| 57 | shift; shift | ||
| 58 | echo $@ $mdir/$folder | xargs mrefile | ||
| 59 | else | ||
| 60 | echo "No folder given, not moved" | ||
| 61 | fi | ||
| 62 | elif [ "$1" = "get" ]; then | 53 | elif [ "$1" = "get" ]; then |
| 63 | mbextra_get $2 | 54 | mbextra_get $2 |
| 64 | elif [ "$1" = "save" ]; then | 55 | elif [ "$1" = "save" ]; then |
