]> Dogcows Code - chaz/openbox/commitdiff
move the themes
authorDana Jansens <danakj@orodu.net>
Sun, 13 Apr 2003 07:02:34 +0000 (07:02 +0000)
committerDana Jansens <danakj@orodu.net>
Sun, 13 Apr 2003 07:02:34 +0000 (07:02 +0000)
43 files changed:
build/Makefile.themes
themes/bbs [moved from themes/openbox/bbs with 100% similarity]
themes/bluebox [moved from themes/openbox/bluebox with 100% similarity]
themes/cthulhain [moved from themes/openbox/cthulhain with 100% similarity]
themes/deep [moved from themes/openbox/deep with 100% similarity]
themes/ebox [moved from themes/openbox/ebox with 100% similarity]
themes/ebox_buttons/bulletbc.xbm [moved from themes/openbox/ebox_buttons/bulletbc.xbm with 100% similarity]
themes/ebox_buttons/bulletl.xbm [moved from themes/openbox/ebox_buttons/bulletl.xbm with 100% similarity]
themes/ebox_buttons/bulletr.xbm [moved from themes/openbox/ebox_buttons/bulletr.xbm with 100% similarity]
themes/ebox_buttons/close.xbm [moved from themes/openbox/ebox_buttons/close.xbm with 100% similarity]
themes/ebox_buttons/icon.xbm [moved from themes/openbox/ebox_buttons/icon.xbm with 100% similarity]
themes/ebox_buttons/max.xbm [moved from themes/openbox/ebox_buttons/max.xbm with 100% similarity]
themes/fieron [moved from themes/openbox/fieron with 100% similarity]
themes/fieron2 [moved from themes/openbox/fieron2 with 100% similarity]
themes/fieron2_buttons/close.xbm [moved from themes/openbox/fieron2_buttons/close.xbm with 100% similarity]
themes/fieron2_buttons/icon.xbm [moved from themes/openbox/fieron2_buttons/icon.xbm with 100% similarity]
themes/fieron2_buttons/max.xbm [moved from themes/openbox/fieron2_buttons/max.xbm with 100% similarity]
themes/fieron2_buttons/stick.xbm [moved from themes/openbox/fieron2_buttons/stick.xbm with 100% similarity]
themes/fieron_buttons/close.xbm [moved from themes/openbox/fieron_buttons/close.xbm with 100% similarity]
themes/fieron_buttons/icon.xbm [moved from themes/openbox/fieron_buttons/icon.xbm with 100% similarity]
themes/fieron_buttons/max.xbm [moved from themes/openbox/fieron_buttons/max.xbm with 100% similarity]
themes/fieron_buttons/stick.xbm [moved from themes/openbox/fieron_buttons/stick.xbm with 100% similarity]
themes/flux [moved from themes/openbox/flux with 100% similarity]
themes/frobozz [moved from themes/openbox/frobozz with 100% similarity]
themes/frobust [moved from themes/openbox/frobust with 100% similarity]
themes/mbdtex [moved from themes/openbox/mbdtex with 100% similarity]
themes/miklos [moved from themes/openbox/miklos with 100% similarity]
themes/nyz [moved from themes/openbox/nyz with 100% similarity]
themes/nyzclone [moved from themes/openbox/nyzclone with 100% similarity]
themes/ob20 [moved from themes/openbox/ob20 with 100% similarity]
themes/openbox/.cvsignore [deleted file]
themes/openbox/artwiz [deleted file]
themes/operation [moved from themes/openbox/operation with 100% similarity]
themes/outcomes [moved from themes/openbox/outcomes with 100% similarity]
themes/paper [moved from themes/openbox/paper with 100% similarity]
themes/purplehaaze [moved from themes/openbox/purplehaaze with 100% similarity]
themes/shade [moved from themes/openbox/shade with 100% similarity]
themes/steelblue [moved from themes/openbox/steelblue with 100% similarity]
themes/steelblue2 [moved from themes/openbox/steelblue2 with 100% similarity]
themes/the_orange [moved from themes/openbox/the_orange with 100% similarity]
themes/trisb [moved from themes/openbox/trisb with 100% similarity]
themes/twice [moved from themes/openbox/twice with 100% similarity]
themes/warp-xp [moved from themes/openbox/warp-xp with 100% similarity]

index 577753d9fd32e8f34701c73e026553b9cbdd4d6a..c08e210395831d1e677201e4154df3e65bd702e4 100644 (file)
@@ -1,21 +1,72 @@
 include build/Makefile.incl
 
-targets = openbox
+dir = themes
 
-all clean distclean:
-       @for i in $(targets); do \
-               $(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
-       done
+files = artwiz bbs bluebox cthulhain deep ebox fieron fieron2 flux \
+        frobozz frobust mbdtex miklos nyz nyzclone ob20 operation \
+        outcomes paper purplehaaze shade steelblue steelblue2 \
+        the_orange trisb twice warp-xp
+
+srcdir := $(srcdir)/$(dir)
+dir := $(DESTDIR)$(themedir)
+sources := $(addprefix $(srcdir)/,$(files))
+
+fieron_buttons_dir := $(dir)/fieron_buttons
+fieron_buttons_srcdir := $(srcdir)/fieron_buttons
+fieron_buttons := close.xbm icon.xbm max.xbm stick.xbm
+fieron_buttons_sources := $(addprefix $(fieron_buttons_srcdir)/,$(fieron_buttons))
+
+fieron2_buttons_dir:=$(dir)/fieron2_buttons
+fieron2_buttons_srcdir:=$(srcdir)/fieron2_buttons
+fieron2_buttons:=close.xbm icon.xbm max.xbm stick.xbm
+fieron2_buttons_sources := $(addprefix $(fieron2_buttons_srcdir)/,$(fieron2_buttons))
+
+ebox_buttons_dir:=$(dir)/ebox_buttons
+ebox_buttons_srcdir:=$(srcdir)/ebox_buttons
+ebox_buttons:=close.xbm icon.xbm max.xbm
+ebox_buttons_sources := $(addprefix $(ebox_buttons_srcdir)/,$(ebox_buttons))
+
+all:
 
 install:
-       @for i in $(targets); do \
-               $(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
+       $(INSTALL) -d $(dir)
+       for i in $(sources); do \
+               $(INSTALL) -m 644 $$i $(dir); \
+       done
+
+       $(INSTALL) -d $(fieron_buttons_dir)
+       for i in $(fieron_buttons_sources); do \
+               $(INSTALL) $$i $(fieron_buttons_dir); \
+       done
+       $(INSTALL) -d $(fieron2_buttons_dir)
+       for i in $(fieron2_buttons_sources); do \
+               $(INSTALL) $$i $(fieron2_buttons_dir); \
+       done
+       $(INSTALL) -d $(ebox_buttons_dir)
+       for i in $(ebox_buttons_sources); do \
+               $(INSTALL) $$i $(ebox_buttons_dir); \
        done
 
 uninstall:
-       @for i in $(targets); do \
-               $(MAKE) -$(MAKEFLAGS) -f build/Makefile.themes.$$i $@; \
+       for i in $(ebox_buttons); do \
+               $(RM) $(ebox_buttons_dir)/$$i; \
+       done
+       -rmdir $(ebox_buttons_dir)
+       for i in $(fieron2_buttons); do \
+               $(RM) $(fieron2_buttons_dir)/$$i; \
+       done
+       -rmdir $(fieron2_buttons_dir)
+       for i in $(fieron_buttons); do \
+               $(RM) $(fieron_buttons_dir)/$$i; \
        done
-       -rmdir $(DESTDIR)$(themedir)
+       -rmdir $(fieron_buttons_dir)
+       for i in $(files); do \
+               $(RM) $(dir)/$$i; \
+       done
+       -rmdir $(dir)
+
+clean:
+
+distclean:
 
 .PHONY: all clean distclean install uninstall
similarity index 100%
rename from themes/openbox/bbs
rename to themes/bbs
similarity index 100%
rename from themes/openbox/bluebox
rename to themes/bluebox
similarity index 100%
rename from themes/openbox/cthulhain
rename to themes/cthulhain
similarity index 100%
rename from themes/openbox/deep
rename to themes/deep
similarity index 100%
rename from themes/openbox/ebox
rename to themes/ebox
similarity index 100%
rename from themes/openbox/fieron
rename to themes/fieron
similarity index 100%
rename from themes/openbox/fieron2
rename to themes/fieron2
similarity index 100%
rename from themes/openbox/flux
rename to themes/flux
similarity index 100%
rename from themes/openbox/frobozz
rename to themes/frobozz
similarity index 100%
rename from themes/openbox/frobust
rename to themes/frobust
similarity index 100%
rename from themes/openbox/mbdtex
rename to themes/mbdtex
similarity index 100%
rename from themes/openbox/miklos
rename to themes/miklos
similarity index 100%
rename from themes/openbox/nyz
rename to themes/nyz
similarity index 100%
rename from themes/openbox/nyzclone
rename to themes/nyzclone
similarity index 100%
rename from themes/openbox/ob20
rename to themes/ob20
diff --git a/themes/openbox/.cvsignore b/themes/openbox/.cvsignore
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/themes/openbox/artwiz b/themes/openbox/artwiz
deleted file mode 100644 (file)
index c563f3f..0000000
+++ /dev/null
@@ -1,114 +0,0 @@
-toolbar:                       raised gradient vertical
-toolbar.color:                 rgb:80/84/88
-toolbar.colorTo:               rgb:30/34/38
-
-toolbar.button:                        raised gradient diagonal
-toolbar.button.color:          rgb:90/94/98
-toolbar.button.colorTo:                rgb:20/24/28
-toolbar.button.picColor:       white
-
-toolbar.button.pressed:                sunken gradient diagonal
-toolbar.button.pressed.color:  black
-toolbar.button.pressed.colorTo:        rgb:80/98/d0
-
-toolbar.clock:                 sunken gradient diagonal
-toolbar.clock.color:           rgb:10/20/30
-toolbar.clock.colorTo:         rgb:70/80/90
-toolbar.clock.textColor:       white
-
-toolbar.label:                 sunken gradient diagonal
-toolbar.label.color:           rgb:10/20/30
-toolbar.label.colorTo:         rgb:70/80/90
-toolbar.label.textColor:       white
-
-toolbar.windowLabel:           sunken gradient diagonal
-toolbar.windowLabel.color:     rgb:10/20/30
-toolbar.windowLabel.colorTo:   rgb:70/80/90
-toolbar.windowLabel.textColor: white
-
-toolbar.justify:               center
-
-
-menu.title:                    raised gradient diagonal
-menu.title.color:              rgb:90/94/98
-menu.title.colorTo:            rgb:20/24/28
-menu.title.textColor:          white
-menu.title.justify:            center
-
-menu.frame:                    sunken gradient diagonal
-menu.frame.color:              rgb:10/20/30
-menu.frame.colorTo:            rgb:70/80/90
-menu.frame.textColor:          rgb:90/a0/b0
-menu.frame.justify:            center
-
-menu.hilite:                   raised gradient diagonal
-menu.hilite.color:             rgb:90/94/98
-menu.hilite.colorTo:           rgb:20/24/28
-menu.hilite.textColor:         white
-
-menu.bullet:                   empty
-menu.bullet.position:          right
-
-
-window.title.focus:            raised gradient vertical
-window.title.focus.color:      rgb:80/84/88
-window.title.focus.colorTo:    rgb:30/34/38
-window.title.unfocus:          raised vertical gradient
-window.title.unfocus.color:    rgb:50/54/58
-window.title.unfocus.colorTo:  black
-
-window.label.focus:            sunken diagonal gradient
-window.label.focus.color:      rgb:10/20/30
-window.label.focus.colorTo:    rgb:70/80/90
-window.label.focus.textColor:  white
-window.label.unfocus:          sunken gradient diagonal
-window.label.unfocus.color:    black
-window.label.unfocus.colorTo:  rgb:40/50/60
-window.label.unfocus.textColor:        rgb:60/64/68
-
-window.button.focus:           raised gradient diagonal
-window.button.focus.color:     rgb:90/94/98
-window.button.focus.colorTo:   rgb:20/24/28
-window.button.focus.picColor:  white
-window.button.unfocus:         raised gradient diagonal
-window.button.unfocus.color:   rgb:50/54/58
-window.button.unfocus.colorTo: black
-window.button.unfocus.picColor:        rgb:70/74/78
-window.button.pressed:         sunken gradient diagonal
-window.button.pressed.color:   rgb:20/40/50
-window.button.pressed.colorTo: rgb:60/70/80
-
-window.frame.focusColor:       rgb:40/44/48
-window.frame.unfocusColor:     rgb:20/24/28
-
-window.handle.focus:           raised gradient diagonal
-window.handle.focus.color:     rgb:70/74/78
-window.handle.focus.colorTo:   rgb:40/44/48
-window.handle.unfocus:         raised gradient diagonal
-window.handle.unfocus.color:   rgb:50/54/58
-window.handle.unfocus.colorTo: black
-
-window.grip.focus:             sunken diagonal gradient
-window.grip.focus.color:       rgb:20/30/40
-window.grip.focus.colorTo:     rgb:60/70/80
-window.grip.unfocus:           sunken diagonal gradient
-window.grip.unfocus.color:     black
-window.grip.unfocus.colorTo:   rgb:30/40/50
-
-window.justify:                        center
-
-
-borderColor:                   black
-
-bevelWidth:                    2
-borderWidth:                   1
-handleWidth:                   5
-
-rootCommand:   bsetroot -mod 4 4 -bg rgb:10/18/20 -fg rgb:30/38/40
-
-*Font: -*-lucidatypewriter-medium-r-*-*-*-100-*-*-*-*-*-*
-
-*xft.font:             Verdana
-*xft.size:             8
-
-menu.*.xft.size:       10
\ No newline at end of file
similarity index 100%
rename from themes/openbox/operation
rename to themes/operation
similarity index 100%
rename from themes/openbox/outcomes
rename to themes/outcomes
similarity index 100%
rename from themes/openbox/paper
rename to themes/paper
similarity index 100%
rename from themes/openbox/shade
rename to themes/shade
similarity index 100%
rename from themes/openbox/steelblue
rename to themes/steelblue
similarity index 100%
rename from themes/openbox/steelblue2
rename to themes/steelblue2
similarity index 100%
rename from themes/openbox/the_orange
rename to themes/the_orange
similarity index 100%
rename from themes/openbox/trisb
rename to themes/trisb
similarity index 100%
rename from themes/openbox/twice
rename to themes/twice
similarity index 100%
rename from themes/openbox/warp-xp
rename to themes/warp-xp
This page took 0.04941 seconds and 4 git commands to generate.