aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano.tronto@gmail.com>2022-05-13 16:57:49 +0200
committerSebastiano Tronto <sebastiano.tronto@gmail.com>2022-05-13 16:57:49 +0200
commit5ca3ebbf7c3cef6db6b8270af4fcf0be087c29c1 (patch)
tree60a20e4050a66527d9a11739d2ed10ec496e29dd
parent635c4ebe0aae63eafb3119f0b8cef6f057759b62 (diff)
downloadscripts-5ca3ebbf7c3cef6db6b8270af4fcf0be087c29c1.tar.gz
scripts-5ca3ebbf7c3cef6db6b8270af4fcf0be087c29c1.zip
removed mblaze-extras mv
-rw-r--r--TODO3
-rwxr-xr-xmblaze-extras9
2 files changed, 3 insertions, 9 deletions
diff --git a/TODO b/TODO
index de7ed81..bf26303 100644
--- a/TODO
+++ b/TODO
@@ -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"
52elif [ "$1" = "scan" ]; then 51elif [ "$1" = "scan" ]; then
53 mbextra_scan $2 52 mbextra_scan $2
54elif [ "$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
62elif [ "$1" = "get" ]; then 53elif [ "$1" = "get" ]; then
63 mbextra_get $2 54 mbextra_get $2
64elif [ "$1" = "save" ]; then 55elif [ "$1" = "save" ]; then

Generated with cgit - Back to sebastiano.tronto.net