forked from puppylinux-woof-CE/woof-CE
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: 01micko <[email protected]>
- Loading branch information
Showing
15 changed files
with
396 additions
and
98 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
woof-code/rootfs-petbuilds/labwc/etc/xdg/autostart/altf1d.desktop
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,5 @@ build() { | |
ninja -C build install | ||
cd .. | ||
|
||
$CC $CFLAGS altf1d.c $LDFLAGS -o /usr/bin/altf1d | ||
|
||
rm -rf /opt/wlroots | ||
} |
8 changes: 0 additions & 8 deletions
8
woof-code/rootfs-petbuilds/sfwbar/root/.config/sfwbar/buttonmenu.widget
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
woof-code/rootfs-petbuilds/sfwbar/root/.config/sfwbar/menu.widget
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
include("menu.source") | ||
|
||
layout { | ||
button { | ||
value = "/usr/share/doc/puppylogo48.png" | ||
action[1] = Menu "main_menu" | ||
tooltip = "Launch menu" | ||
css = "* { min-height: 24px; min-width: 24px; }" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...code/rootfs-petbuilds/xdg-puppy-sfwbar/etc/xdg/templates/_root_.config_sfwbar_menu.source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
menu("main_menu") { | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-desktop.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-system.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-setup.menu | ||
separator | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-utility.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-filesystem.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-graphic.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-document.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-calculate.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-personal.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-network.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-internet.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-multimedia.menu | ||
PUPPYMENU sfwbar-xdgmenu /etc/xdg/menus/puppy-fun.menu | ||
separator | ||
item(" Help%/usr/local/lib/X11/pixmaps/help48.png", Exec "puppyhelp") | ||
item(" Leave%/usr/local/lib/X11/pixmaps/shutdown48.png", Exec "logout_gui") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
xdg-puppy-sfwbar-0.7.6-9|xdg-puppy-sfwbar|0.7.6-9||BuildingBlock|28||xdg-puppy-sfwbar-0.7.6-9.pet||A menu builder for sfwbar|puppy||| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
download() { | ||
[ -f gnome-menus-2.14.3.tar.bz2 ] || wget -t 3 -T 60 http://distro.ibiblio.org/puppylinux/sources/g/gnome-menus-2.14.3.tar.bz2 | ||
} | ||
|
||
build() { | ||
tar -xjf gnome-menus-2.14.3.tar.bz2 | ||
cd gnome-menus-2.14.3 | ||
sed s~fam.h~doesnotexist.h~ -i configure | ||
patch -p1 < ../terminal.patch | ||
./configure --prefix=/usr --sysconfdir=/etc --disable-python | ||
make install | ||
cd .. | ||
|
||
# force static linking, we're using an old version and don't want it to conflict with a later version | ||
rm -f /usr/lib/libgnome-menu.so* | ||
|
||
$CC $CFLAGS -DGMENU_I_KNOW_THIS_IS_UNSTABLE `PKG_CONFIG_PATH="/usr/lib/pkgconfig:$PKG_CONFIG_PATH" pkg-config --cflags glib-2.0 libgnome-menu` sfwbar-xdgmenu.c $LDFLAGS `PKG_CONFIG_PATH="/usr/lib/pkgconfig:$PKG_CONFIG_PATH" pkg-config --libs glib-2.0 libgnome-menu` -o /usr/bin/sfwbar-xdgmenu | ||
|
||
# we don't need these | ||
rm -rf /usr/bin/gnome-menu-spec-test /usr/lib /usr/include /usr/share/locale | ||
} |
Oops, something went wrong.