


I dont know how to post images direct (sorry for my english i am spanish)
Hey man, looks awesome!eljuertes wrote:My fake Mac (Puppy 5.1)
http://img831.imageshack.us/img831/4279/puppymac3.png
http://img151.imageshack.us/img151/3158/puppymac2.png
http://img839.imageshack.us/img839/7749/puppymac4.png
I dont know how to post images direct (sorry for my english i am spanish)
Code: Select all
[img][/img]
Thanks now is okbattleshooter wrote:Hey man, looks awesome!eljuertes wrote:My fake Mac (Puppy 5.1)
http://img831.imageshack.us/img831/4279/puppymac3.png
http://img151.imageshack.us/img151/3158/puppymac2.png
http://img839.imageshack.us/img839/7749/puppymac4.png
I dont know how to post images direct (sorry for my english i am spanish)
BTW, just put the link betweenTo get it to show up.Code: Select all
[img][/img]
Welcome to the forum!
Battleshooter
Hi WarMocK,WarMocK wrote:Dejan555 gets 100 rubber points and a cookie.
I'm coding that menu right now. It's called navig8or and is written in C++. Only dependencies so far are Gtk and Pango (both are core components in puppy, no need to install anything else). Right now I'm working on the most important part of it: the application menu, which will be created from the .jwmrc file.
Features:
- shortbut links to the folders in your home directory, for example, pictures, media or docs
- a combined exec/search bar. write the command and hit enter/press the button next to it, and the application starts. Right-click the field and it searches for the file (not implemented yet)
- Logout button (probably gonna write me a new window for all the exit/shutdown/reboot stuff)
todo:
- application menu using .jwmrc
- link to the system settings
As soon as I got these features implemented (and I got the transparency working) I'll see if I can break it up and reconfigure the program so I can place the control elements on the main window using a config file.
I wanted to add the <geometry> parameter first so you can set the size properties of the menu window. Right now the window size is fixed to 400x260 pixels. Once the <geometry> parameter is implemented you can use the window for more than just a main menu - you can use it to display small launcher widgets and other stuff on the desktop, provided I start adding even more things into the binary. Right now I have 5 different functions (app list, shaped buttons, a search and execution bar, labels, and images), but I already considered adding stuff like drive icons that can be clicked to mount the appropriate drive and open it's content with the file manager of your choice.clarf wrote: Hi WarMocK,
Any news about your Navig8or?. I would like to test any alpha release, it looks really cool.
Greetings,
clarf
Code: Select all
#!/bin/sh
CHECK=`ps | grep navig8or | grep -v grep`
if [ "$CHECK" != "" ];then
killall navig8or
else
/usr/local/navig8or/navig8or 750 340 /root/.navig8or/config &
fi