diff --git a/.mlvwm/.initrc b/.mlvwm/.initrc index f58edeb..7836e28 100644 --- a/.mlvwm/.initrc +++ b/.mlvwm/.initrc @@ -2,6 +2,8 @@ InitFunction # Set the root window (i.e. desktop) background color (or image) Exec "xsetroot" xsetroot -grey & # Exec "xsetroot" xsetroot -solid darkgrey & +# Exec "xsetbg" xsetbg -fullscreen ~/.mlvwm/patterns/mac-os-background.jpg +# Exec "xsetbg" xsetbg ~/.mlvwm/patterns/mac-os-default.png # Launch Xterm on the first desktop (i.e. screen) Desk 0 diff --git a/Makefile b/Makefile index 97bd136..6a9fcaf 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,20 @@ TEMP=tmp CONF=.mlvwm PIXMAP=$(CONF)/pixmap +PATTERNS=$(CONF)/patterns -all: pixmap +all: pixmap patterns 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 +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://forums.macrumors.com/attachments/mac-os-default-png.61610 -o $(PATTERNS)/mac-os-default.png + install: cp -R $(CONF) $(HOME)/ ln -fs $(HOME)/$(CONF)/.mlvwmrc $(HOME)/.mlvwmrc @@ -16,4 +22,5 @@ install: clean: rm -r $(TEMP) - rm -r $(PIXMAP)/mini*.xpm \ No newline at end of file + rm -r $(PIXMAP)/mini*.xpm + rm -rf $(PATTERNS)