Skip to content

Commit

Permalink
initial commit: add www pages
Browse files Browse the repository at this point in the history
  • Loading branch information
aanatoly committed Dec 3, 2015
1 parent 1a2e2e0 commit 6488bec
Show file tree
Hide file tree
Showing 57 changed files with 2,313 additions and 0 deletions.
6 changes: 6 additions & 0 deletions www/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SUBDIRS = shots plugins
TOPDIR = .
include $(TOPDIR)/Makefile.common


all: index.html docs.html
32 changes: 32 additions & 0 deletions www/Makefile.common
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# catch all goal
all:


TOP = $(TOPDIR)/top
BT1 = $(TOPDIR)/bottom1
BT2 = $(TOPDIR)/bottom2

AUXSRC = $(TOP) $(BT1) $(BT2)

%.html: %.thtml $(AUXSRC)
@cat $(TOP) $< $(BT1) > $@
@echo "<div>$(shell date '+Updated on %d-%m-%Y')</div>" >> $@
@cat $(BT2) >> $@
@echo HTML $@








.PHONY: $(SUBDIRS) all clean
all: Makefile $(SUBDIRS)
clean: $(SUBDIRS)

$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)

clean:
$(RM) *.html *~
7 changes: 7 additions & 0 deletions www/bottom1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

<!-- actual page payload - end -->
</div>
</td>
</tr>
</tbody>
</table>
2 changes: 2 additions & 0 deletions www/bottom2
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

</body></html>
176 changes: 176 additions & 0 deletions www/configs/bottom
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
# fbpanel <profile> config file
# see http://fbpanel.sf.net/docs.html for complete configuration guide


Global {
edge = bottom
allign = center
margin = 0
widthtype = percent
width = 80
height = 26
transparent = true
tintcolor = #ffffff
alpha = 25
setdocktype = true
setpartialstrut = true
}

Plugin {
type = menu
config {
icon = star
systemmenu {
}
separator {
}
item {
icon = gnome-settings
name = configure
command = configure
}
}
}


Plugin {
type = space
config {
size = 10
}
}


Plugin {
type = launchbar
padding = 4
config {
button {
icon = gnome-terminal
image = ~/.fbpanel/images/GNOME-Terminal.png
tooltip = urxvt
action = myterm2
}
button {
icon = gnome-fs-home
image = /usr/lib/rox/ROX-Filer/.DirIcon
tooltip = Rox File Manager
action = rox
}
button {
icon = mozilla-firefox
tooltip = firefox
action = firefox -P default
}
button {
image = ~/.rox/Drawer/.DirIcon
tooltip = drawer
action = ~/.rox/Drawer/AppRun
}
button {
icon = multimedia-player
image = ~/.fbpanel/images/totem.svg
tooltip = mplayer
action = gmplayer-bin
}
}
}


Plugin {
type = space
config {
size = 10
}
}


Plugin {
type = wincmd
config {
icon = gnome-fs-desktop
image = ~/.fbpanel/images/gnome-fs-desktop.svg
tooltip = Left click to iconify all windows. Middle click to shade them.
}
}


Plugin {
type = space
config {
size = 10
}
}


Plugin {
type = taskbar
expand = true
config {
ShowIconified = true
ShowMapped = true
ShowAllDesks = false
tooltips = true
IconsOnly = false
MaxTaskWidth = 150
AcceptSkipPager = false
spacing = 0
}
}


Plugin {
type = tray
}


Plugin {
type = dclock
config {
ClockFmt = %R
TooltipFmt = %A %x
Action = xmessage Please define some command &
}
}


Plugin {
type = icons
config {
DefaultIcon = /usr/share/fbpanel/images/default.xpm
application {
icon = gnome-terminal
image = /home/aanatoly/.fbpanel/images/GNOME-Terminal.png
ClassName = XTerm
}
application {
image = /home/aanatoly/.fbpanel/images/GNOME-Terminal.png
icon = gnome-terminal
ClassName = mlterm
}
application {
icon = gnome-terminal
image = /home/aanatoly/.fbpanel/images/GNOME-Terminal.png
ClassName = URxvt
}
application {
image = ~/.fbpanel/images/Emacs.png
icon = gnome-emacs
ClassName = Emacs
}
application {
icon = mozilla-firefox
ClassName = Firefox-bin
}
application {
icon = mozilla-firefox
ClassName = Firefox
}
application {
icon = multimedia-player
ClassName = MPlayer
}
}
}


Loading

0 comments on commit 6488bec

Please sign in to comment.