Added VLC styling, plus updated Makeile to download VLC icon

This commit is contained in:
Morgan Aldridge 2019-08-02 14:10:56 -04:00
parent c8de3cf15f
commit 67b7c7f6a8
3 changed files with 40 additions and 0 deletions

View File

@ -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

37
.mlvwm/apps/vlc Normal file
View File

@ -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

View File

@ -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)