mirror of
https://github.com/morgant/mlvwmrc.git
synced 2024-12-27 22:30:49 +00:00
81 lines
3.2 KiB
Makefile
81 lines
3.2 KiB
Makefile
TEMP=tmp
|
|
CONF=.mlvwm
|
|
BIN=bin
|
|
PIXMAP=$(CONF)/pixmap
|
|
PATTERNS=$(CONF)/patterns
|
|
|
|
all: pixmap patterns
|
|
|
|
pixmap:
|
|
#
|
|
# 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
|
|
#
|
|
# download & convert icons from source code repositories
|
|
#
|
|
curl -# -L https://raw.githubusercontent.com/Swordfish90/cool-retro-term/master/app/icons/32x32/cool-retro-term.png -o $(TEMP)/cool-retro-term.png
|
|
convert $(TEMP)/cool-retro-term.png -resize 16x16\> $(PIXMAP)/cool-retro-term.xpm
|
|
curl -# -L https://hg.mozilla.org/releases/mozilla-release/raw-file/tip/browser/branding/official/default16.png -o $(TEMP)/firefox.png
|
|
convert $(TEMP)/firefox.png $(PIXMAP)/firefox.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
|
|
curl -# -L "https://gitlab.com/qemu-project/qemu/-/raw/master/ui/icons/qemu_16x16.png?ref_type=heads&inline=false" -o $(TEMP)/qemu.png
|
|
convert $(TEMP)/qemu.png $(PIXMAP)/qemu.xpm
|
|
curl -# -L https://raw.githubusercontent.com/scummvm/scummvm/master/icons/scummvm.ico -o $(TEMP)/scummvm.ico
|
|
convert $(TEMP)/scummvm.ico[8] -resize 16x16\> $(PIXMAP)/scummvm.xpm
|
|
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
|
|
#
|
|
# 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
|
|
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:
|
|
test ! -d $(PATTERNS) && mkdir $(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"
|
|
|
|
install: install-bin
|
|
cp -R $(CONF) $(HOME)/
|
|
ln -fs $(HOME)/$(CONF)/.mlvwmrc $(HOME)/.mlvwmrc
|
|
sed -i 's@/home2/tak/bin/pixmap@$(HOME)/$(PIXMAP)@g' $(HOME)/$(CONF)/.mlvwmrc
|
|
|
|
install-bin:
|
|
mkdir -p $(HOME)/$(BIN)
|
|
install -b -B .`date +%Y%m%d-%H%M%S` -m 700 -o $(USER) $(BIN)/mlvwm-* $(HOME)/$(BIN)
|
|
|
|
clean: clean-pixmap
|
|
rm -r $(TEMP)
|
|
rm -rf $(PATTERNS)
|
|
|
|
clean-pixmap:
|
|
rm $(PIXMAP)/mini*.xpm
|
|
rm $(PIXMAP)/chromium.xpm
|
|
rm $(PIXMAP)/claws-mail.xpm
|
|
rm $(PIXMAP)/cool-retro-term.xpm
|
|
rm $(PIXMAP)/firefox.xpm
|
|
rm $(PIXMAP)/iridium.xpm
|
|
rm $(PIXMAP)/mpv.xpm
|
|
rm $(PIXMAP)/qemu.xpm
|
|
rm $(PIXMAP)/scummvm.xpm
|
|
rm $(PIXMAP)/vlc.xpm
|
|
rm $(PIXMAP)/zeal.xpm
|
|
|