56 lines
923 B
JSON
56 lines
923 B
JSON
[
|
|
{
|
|
"name": "music-p4f",
|
|
"match": "*{\\[P4F\\],p4f}.zip",
|
|
"action": "exec",
|
|
"exec": "~/.config/organize/scripts/unzip-music.sh"
|
|
},
|
|
{
|
|
"name": "screenshots",
|
|
"match": "*_scrot.png",
|
|
"action": "move",
|
|
"to": "~/images/screenshots"
|
|
},
|
|
{
|
|
"match": "*.html",
|
|
"action": "move",
|
|
"to": "~/docs/html/"
|
|
},
|
|
{
|
|
"match": "*.pdf",
|
|
"action": "move",
|
|
"to": "~/docs/pdf/"
|
|
},
|
|
{
|
|
"match": "*.txt",
|
|
"action": "move",
|
|
"to": "~/docs/txt/"
|
|
},
|
|
{
|
|
"match": "*.{jpeg,jpg,gif,png,svg,xcf}",
|
|
"action": "move",
|
|
"to": "~/images/"
|
|
},
|
|
{
|
|
"match": "*.{mkv,mp4,wmv}",
|
|
"action": "move",
|
|
"to": "~/videos"
|
|
},
|
|
{
|
|
"match": "*.{sh,bash}",
|
|
"action": "move",
|
|
"to": "~/random/code/sh",
|
|
"ask_confirm": true
|
|
},
|
|
{
|
|
"match": "*.c",
|
|
"action": "move",
|
|
"to": "~/random/code/c",
|
|
"ask_confirm": true
|
|
},
|
|
{
|
|
"match": "*~",
|
|
"action": "remove",
|
|
"ask_confirm": true
|
|
}
|
|
]
|