X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=.mc%2Fmenu;h=acb6b51acf4fbb5c7ef7d181a6f71c405c7e95ce;hb=1dd7ac76fb5d0fdc4506c1a29f5ffa3f5184b9a1;hp=e868e72c8f03a1cc28914913cc7c52c76d9b2349;hpb=1b79f1ce334b528cebe62f25b7d72e29b608d85f;p=dotfiles.git diff --git a/.mc/menu b/.mc/menu index e868e72..acb6b51 100644 --- a/.mc/menu +++ b/.mc/menu @@ -61,34 +61,42 @@ T fb2txt esac $A %f | xsltproc /usr/local/src/FictionBook/FB2_2_txt_ru.xsl - | webstdin -e txt -t -+= t lr & f \.(pdf|PDF|ps|PS)(\.bz2|\.gz)?$ -e View pdf/ps with qpdfview - qpdfview "`echo \"%f\" | sed 's/\\\\//g' | iconv -t utf-8`" & ++ t lr & f \.(pdf|PDF)$ +v View pdf + pdftotext -layout -q %f - | iconv.py -f utf-8 | ${PAGER:-more} + ++= t lr & f \.(pdf|PDF)$ +e View pdf with evince + evince %f & += t lr & f \.djvu(\.bz2|\.gz)?$ e View djvu djview %f & -+= t lr & f \.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$ -o View OpenDoc with odt2txt - odt2txt %f | ${PAGER:-more} - + t lr & f \.((pdf|PDF|ps|PS)(\.bz2|\.gz)?|odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg|doc|DOC|rtf|docx|DOCX|xls|XLS|xlsx|XLSX)$ e Edit (Open)Docs with libreoffice libreoffice %f & ++ t lr & f \.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg|doc|DOC|rtf|docx|DOCX|xls|XLS|xlsx|XLSX)$ +v View (Open)Docs with libreoffice + #libreoffice --headless --convert-to "txt:Text (encoded):UTF8" %f + libreoffice --cat %f | ${PAGER:-more} + += t lr & f \.(doc|DOC|rtf)$ d View doc with catdoc catdoc %f | ${PAGER:-more} ++= t lr & f \.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$ +o View OpenDoc with odt2txt + odt2txt %f | ${PAGER:-more} + += t lr & f \.(docx|DOCX)$ d View docx with docx2txt docx2txt %f - | iconv.py -f utf-8 | ${PAGER:-more} -+ t lr & f \.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg|doc|DOC|rtf|docx|DOCX|xls|XLS|xlsx|XLSX)$ -v View (Open)Docs with libreoffice - #libreoffice --headless --convert-to "txt:Text (encoded):UTF8" %f - libreoffice --cat %f | ${PAGER:-more} ++= t lr & f \.(xls|XLS|xlsx|XLSX)$ +o View OpenXlsx with xlsx2csv + xlsx2csv %f | iconv.py -f utf-8 | ${PAGER:-more} += t lr & f \.(xls|XLS)$ x View xls with xls2csv @@ -114,28 +122,43 @@ I View icon, JPEG-2000, TIFF, WebP image + t lr & f \.(aac|ac3|ape|cue|dts|flac|m3u|mka|mp3|MP3|ogg|OGG|pls|WAV|wav|wv)$ | t t a Add the audiofile(s) or playlist(s) - if [ "`audtool --get-volume`" -eq 0 ]; then cgmem_nice 200 audacious & sleep 3; fi + if [ "`audtool --get-volume`" -eq 0 ]; then audacious & sleep 3; fi for f in %s; do - audtool --playlist-addurl "$f" + case "$f" in + *.m3u) while read song; do + audtool --playlist-addurl "$song" + done < "$f" ;; + *) audtool --playlist-addurl "$f" ;; + esac done #deadbeef --queue %s & + t lr & f \.(aac|ac3|ape|cue|dts|flac|m3u|mka|mp3|MP3|ogg|OGG|pls|WAV|wav|wv)$ | t t = t lr & f \.(aac|ac3|ape|cue|dts|flac|m3u|mka|mp3|MP3|ogg|OGG|pls|WAV|wav|wv)$ p Load the audiofile(s) or playlist(s) - if [ "`audtool --get-volume`" -eq 0 ]; then cgmem_nice 200 audacious & sleep 3; fi + if [ "`audtool --get-volume`" -eq 0 ]; then audacious & sleep 3; fi audtool --playlist-clear for f in %s; do - audtool --playlist-addurl "$f" + case "$f" in + *.m3u) while read song; do + audtool --playlist-addurl "$song" + done < "$f" ;; + *) audtool --playlist-addurl "$f" ;; + esac done #deadbeef --queue %s & + t lr & f \.(aac|ac3|ape|cue|dts|flac|m3u|mka|mp3|MP3|ogg|OGG|pls|WAV|wav|wv)$ | t t P Play the audiofile(s) or playlist(s) - if [ "`audtool --get-volume`" -eq 0 ]; then cgmem_nice 200 audacious & sleep 3; fi + if [ "`audtool --get-volume`" -eq 0 ]; then audacious & sleep 3; fi audtool --playlist-clear for f in %s; do - audtool --playlist-addurl "$f" + case "$f" in + *.m3u) while read song; do + audtool --playlist-addurl "$song" + done < "$f" ;; + *) audtool --playlist-addurl "$f" ;; + esac done exec audtool --playback-play #mplayer -playlist %f & @@ -144,9 +167,11 @@ P Play the audiofile(s) or playlist(s) + t lr & f \.m3u R Play the playlist in random order "$HOME"/admin/prog/audio-cdr-video/audio/shuffle-playlist.py %f random-playlist-tmp.m3u - if [ "`audtool --get-volume`" -eq 0 ]; then cgmem_nice 200 audacious & sleep 3; fi + if [ "`audtool --get-volume`" -eq 0 ]; then audacious & sleep 3; fi audtool --playlist-clear - audtool --playlist-addurl random-playlist-tmp.m3u + while read song; do + audtool --playlist-addurl "$song" + done < random-playlist-tmp.m3u audtool --playback-play #mplayer -playlist random-playlist-tmp.m3u & #deadbeef --queue random-playlist-tmp.m3u & deadbeef --play @@ -161,20 +186,31 @@ i DVD info exec "$HOME"/.config/mpv/mpv_identify.sh . + f \.(aac|ac3|ape|cue|dts|flac|m3u|mp3|MP3|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|iso|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ | t d | t t -= f \.(aac|ac3|ape|cue|dts|flac|m3u|mp3|MP3|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|iso|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ m Play video file(s) with mpv mplayer %s & ++ f \.(aac|ac3|ape|cue|dts|flac|m3u|mp3|MP3|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|iso|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ | t d | t t +m Play video file(s) with mpv (loud) + AUDIO_VOLUME=120 + export AUDIO_VOLUME + mplayer %s & + + f \.(aac|ac3|ape|cue|dts|flac|m3u|mp3|MP3|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|iso|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ | t d | t t = f \.(aac|ac3|ape|cue|dts|flac|m3u|mp3|MP3|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|iso|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ -m Play video file(s) with mpv asking audio volume +m Play video file(s) with mpv (louder) + AUDIO_VOLUME=150 + export AUDIO_VOLUME + mplayer %s & + ++ f \.(aac|ac3|ape|cue|dts|flac|m3u|mp3|MP3|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|iso|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ | t d | t t +m Play video file(s) with mpv (ask for volume) AUDIO_VOLUME=%{Enter volume} export AUDIO_VOLUME mplayer %s & + f \.(m3u|mp3|MP3|cue|aac|ac3|ape|dts|flac|ogg|OGG|pls|WAV|wav|wv|avi|AVI|flv|m2ts|m4v|mka|mkv|MKV|mov|MOV|mp4|MP4|mpg|MPG|vob|VOB|wma|wmv)$ | t t M Play audio/video with mpv GUI - gmplay %s & + gmplayer %s & += t d & f (video_ts|VIDEO_TS)$ d Play DVD directory with mpv @@ -182,7 +218,7 @@ d Play DVD directory with mpv + t d & f (video_ts|VIDEO_TS)$ D Play DVD directory with mpv GUI - gmplay -dvd-device . dvd:// & + gmplayer -dvd-device . dvd:// & + t d & f (video_ts|VIDEO_TS)$ t Play DVD title with mpv @@ -192,7 +228,7 @@ t Play DVD title with mpv + t d & f (video_ts|VIDEO_TS)$ T Play DVD title with mpv GUI title=%{Enter title} - gmplay -dvd-device . dvd://"$title" & + gmplayer -dvd-device . dvd://"$title" & + t d p Play directory with mpv @@ -200,7 +236,7 @@ p Play directory with mpv + t d P Play directory with mpv GUI - gmplay %f/* & + gmplayer %f/* & + t d & f ^\.\.$ b Compress the current subdirectory to tar.bz2