diff --git a/.mlvwm/apps/.AppsManifest b/.mlvwm/apps/.AppsManifest index c6ef490..31ad22d 100644 --- a/.mlvwm/apps/.AppsManifest +++ b/.mlvwm/apps/.AppsManifest @@ -1,5 +1,6 @@ Read .mlvwm/apps/BasiliskII Read .mlvwm/apps/chrome +Read .mlvwm/apps/vlc Read .mlvwm/apps/xcalc Read .mlvwm/apps/xclock Read .mlvwm/apps/xload diff --git a/.mlvwm/apps/vlc b/.mlvwm/apps/vlc new file mode 100644 index 0000000..5f78507 --- /dev/null +++ b/.mlvwm/apps/vlc @@ -0,0 +1,37 @@ +Menu VLC-File, Label "File", Left +"Open File..." Action SendMessage C+O +"Open Multiple Files..." Action SendMessage SC+O +"Open Directory..." Action SendMessage C+F +"Open Disc..." Action SendMessage C+D +"Open Network Stream..." Action SendMessage C+N +"Open Capture Device..." Action SendMessage C+C +"Open Location from Clipboard" Action SendMessage C+V +"" NonSelect +"Save Playlist to File..." Action SendMessage C+Y +"Convert / Save..." Action SendMessage C+R +"Stream..." Action SendMessage C+S +"" NonSelect +"Quit" Action SendMessage C+Q +END + +Menu VLC-Tools, Label "Tools", Left +"Effects and Filters" Action SendMessage C+E +"Media Information" Action SendMessage C+I +"Codec Information" Action SendMessage C+J +"VLM Configuration" Action SendMessage SC+W +"Messages" Action SendMessage C+M +"" NonSelect +"Preferences" Action SendMessage C+P +END + +MenuBar VLC +VLC-File +def-Edit +VLC-Tools +END + +Style +"*VLC*" NoSBarH, NoSBarV +"*VLC*" MiniIcon vlc.xpm, MenuBar VLC +END + diff --git a/Makefile b/Makefile index 6a9fcaf..47c8ef1 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ pixmap: test ! -d $(TEMP) && mkdir $(TEMP) curl -# -L http://www2u.biglobe.ne.jp/~y-miyata/mlvwm/mini-icons.tar.gz -o $(TEMP)/mini-icons.tar.gz tar -C $(PIXMAP) -xzf $(TEMP)/mini-icons.tar.gz + curl -# -L https://raw.githubusercontent.com/videolan/vlc/master/share/icons/16x16/vlc.xpm -o $(PIXMAP)/vlc.xpm patterns: test ! -d $(PATTERNS) && mkdir $(PATTERNS) @@ -23,4 +24,5 @@ install: clean: rm -r $(TEMP) rm -r $(PIXMAP)/mini*.xpm + rm $(PIXMAP)/vlc.xpm rm -rf $(PATTERNS)