aboutsummaryrefslogtreecommitdiff
path: root/add_my_patches_to_media_menu-plugin.tcl
blob: 249e0a07b50690a6f1427f42a6101e09d34178ed (plain)
1
2
3
4
5
6
7
8
9
10
11
# this script searches a folder for Pd patches, then adds them to the bottom
# of the Media menu for quick opening

# you probably want to set this to something that makes sense for you:
set mypatch_dir "~/Documents/Pd"

.menubar.media add separator

foreach filename [glob -directory $mypatch_dir -nocomplain -types {f} -- *.pd] {
    .menubar.media add command -label [file tail $filename] -command "open_file $filename"
}