pcmanfm arguements; bash
I am using ubuntu, fluxbox, pcmanfm as filemanager, xmms2 as music player. My goal: add songs to xmms2 playlist easily with pcmanfm. I have this script that works for single files: path= $1 if [ -d "$path" ]; then #if directory xmms2 radd "$path" else if [ -e "$path" ]; then #if not directory, but file xmms2 add "$path" ...