mirror of
https://github.com/morgant/mlvwmrc.git
synced 2025-04-13 20:41:10 +00:00
Updated Makefile to reorganize & better comment icon/pixmap downloads, plus added mpv styles
This commit is contained in:
parent
ecbda05a98
commit
379bfd8ec8
@ -6,6 +6,7 @@ Read .mlvwm/apps/firefox
|
||||
Read .mlvwm/apps/HandBrake
|
||||
Read .mlvwm/apps/krita
|
||||
Read .mlvwm/apps/meld
|
||||
Read .mlvwm/apps/mpv
|
||||
Read .mlvwm/apps/pcmanfm
|
||||
Read .mlvwm/apps/remmina
|
||||
Read .mlvwm/apps/retroarch
|
||||
|
12
.mlvwm/apps/mpv
Normal file
12
.mlvwm/apps/mpv
Normal file
@ -0,0 +1,12 @@
|
||||
Menu MPV-File, Label "File", Left
|
||||
"Quit" Action SendMessage N+q
|
||||
END
|
||||
|
||||
MenuBar MPV
|
||||
MPV-File
|
||||
END
|
||||
|
||||
Style
|
||||
"mpv" NoSBarH, NoSBarV
|
||||
"mpv" MiniIcon mpv.xpm, MenuBar MPV
|
||||
END
|
16
Makefile
16
Makefile
@ -6,16 +6,23 @@ PATTERNS=$(CONF)/patterns
|
||||
all: pixmap patterns
|
||||
|
||||
pixmap:
|
||||
test ! -d $(TEMP) && mkdir $(TEMP)
|
||||
# make the temp directory
|
||||
mkdir -p $(TEMP)
|
||||
# download & extract mini-icons
|
||||
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
|
||||
# download XPM icons from source code repositories
|
||||
curl -# -L https://raw.githubusercontent.com/videolan/vlc/master/share/icons/16x16/vlc.xpm -o $(PIXMAP)/vlc.xpm
|
||||
# donwload & convert icons from source code repositories
|
||||
curl -# -L https://raw.githubusercontent.com/zealdocs/zeal/main/assets/freedesktop/16-apps-zeal.png -o $(TEMP)/zeal.png
|
||||
convert $(TEMP)/zeal.png $(PIXMAP)/zeal.xpm
|
||||
curl -# -L https://raw.githubusercontent.com/mpv-player/mpv.io/master/source/images/favicon.png -o $(TEMP)/mpv.png
|
||||
convert $(TEMP)/mpv.png -resize 16x16\> $(PIXMAP)/mpv.xpm
|
||||
# download & convert website favicons
|
||||
convert https://www.chromium.org/favicon.ico $(PIXMAP)/chromium.xpm
|
||||
curl -# -L https://claws-mail.org/favicon.ico -o $(TEMP)/claws-mail-favicon.ico
|
||||
curl -# -L https://iridiumbrowser.de/favicon.ico -o $(TEMP)/iridium-favicon.ico
|
||||
convert $(TEMP)/claws-mail-favicon.ico $(PIXMAP)/claws-mail.xpm
|
||||
curl -# -L https://iridiumbrowser.de/favicon.ico -o $(TEMP)/iridium-favicon.ico
|
||||
convert $(TEMP)/iridium-favicon.ico[2] $(PIXMAP)/iridium.xpm
|
||||
|
||||
patterns:
|
||||
@ -23,8 +30,8 @@ patterns:
|
||||
curl -# -L https://forums.macrumors.com/attachments/mac-os-background-jpg.61609 -o $(PATTERNS)/mac-os-background.jpg
|
||||
curl -# -L https://wallpaperbat.com/img/250263-classic-mac-os-wallpaper.png -o $(PATTERNS)/mac-os-background-hi-res.png
|
||||
curl -# -L https://forums.macrumors.com/attachments/mac-os-default-png.61610 -o $(PATTERNS)/mac-os-default.png
|
||||
curl -# -L https://imgur.com/a/9jYy0/zip -o $(TEMP)/Mac\ OS\ Solid\ Color\ Backgrounds.zip
|
||||
unzip -d $(PATTERNS) $(TEMP)/Mac\ OS\ Solid\ Color\ Backgrounds.zip
|
||||
curl -# -L https://imgur.com/a/9jYy0/zip -o "$(TEMP)/Mac OS Solid Color Backgrounds.zip"
|
||||
unzip -d $(PATTERNS) "$(TEMP)/Mac OS Solid Color Backgrounds.zip"
|
||||
|
||||
install:
|
||||
cp -R $(CONF) $(HOME)/
|
||||
@ -40,6 +47,7 @@ clean-pixmap:
|
||||
rm $(PIXMAP)/chromium.xpm
|
||||
rm $(PIXMAP)/claws-mail.xpm
|
||||
rm $(PIXMAP)/iridium.xpm
|
||||
rm $(PIXMAP)/mpv.xpm
|
||||
rm $(PIXMAP)/vlc.xpm
|
||||
rm $(PIXMAP)/zeal.xpm
|
||||
|
||||
|
@ -62,6 +62,7 @@ Configurations for the following X11 applications are included:
|
||||
* [HandBrake](https://handbrake.fr/)
|
||||
* [Krita](https://krita.org/)
|
||||
* [Meld](http://meldmerge.org/)
|
||||
* [mpv](https://mpv.io/)
|
||||
* [PCManFM](https://en.wikipedia.org/wiki/PCMan_File_Manager)
|
||||
* [RetroArch](https://www.retroarch.com/)
|
||||
* [Remmina](https://remmina.org/)
|
||||
|
Loading…
x
Reference in New Issue
Block a user