The time now is Tue 21 May 2013, 21:30
All times are UTC - 4 |
|
Page 5 of 14 [202 Posts] |
Goto page: Previous 1, 2, 3, 4, 5, 6, 7, ..., 12, 13, 14 Next |
| Author |
Message |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Fri 30 Apr 2010, 12:41 Post subject:
|
|
| 01micko wrote: | | ziggy, not quite perfect but a really good start in quirky-021 | I will test quirky before next DuDE-release.
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Fri 30 Apr 2010, 12:43 Post subject:
|
|
| DaveS wrote: | | When I tried it in 4.3* and 4.4 it cleared the defaultbrowser file of text, and thereafter the wizard would not run. | Will check
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Fri 30 Apr 2010, 12:44 Post subject:
|
|
| DaveS wrote: | | DuDe represents a smarter way of working.......... love it! | Me too
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Fri 30 Apr 2010, 12:47 Post subject:
Re: snap2 |
|
| Jim1911 wrote: | | I don't know if that conflict can be removed without breaking snap2 partially. The current fix breaks the immediate snapshot capability, but allows the snap2 GUI interface to work properly. | If you replace the quotes (") with (') in the snapshot .desktop file (/usr/share/applications), I think it should work as before.
The fix is ready for next DuDE.
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
DaveS

Joined: 09 Oct 2008 Posts: 3669 Location: UK
|
Posted: Fri 30 Apr 2010, 12:56 Post subject:
|
|
| zigbert wrote: | | DaveS wrote: | | When I tried it in 4.3* and 4.4 it cleared the defaultbrowser file of text, and thereafter the wizard would not run. | Will check
Sigmund |
Also confirmed by Mick0
_________________ Spup Frugal HD and USB
Root forever!
|
|
Back to top
|
|
 |
Jim1911
Joined: 19 May 2008 Posts: 2353 Location: Texas, USA
|
Posted: Fri 30 Apr 2010, 13:00 Post subject:
Re: snap2 |
|
| zigbert wrote: | | Jim1911 wrote: | | I don't know if that conflict can be removed without breaking snap2 partially. The current fix breaks the immediate snapshot capability, but allows the snap2 GUI interface to work properly. | If you replace the quotes (") with (') in the snapshot .desktop file (/usr/share/applications), I think it should work as before.
The fix is ready for next DuDE.
Sigmund | Thanks, I'll give it a try on the Nvidia special test edition of quirky-022 which incidentally DuDE is working great on.
Since DuDE is already installed, will I need to do anything extra other than changing the quotes?
Thanks,
Jim
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Fri 30 Apr 2010, 19:32 Post subject:
|
|
Jim, I would say an X restart so DuDE actually restarts so the change can take effect.
Cheers
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Sat 01 May 2010, 03:53 Post subject:
Re: snap2 |
|
| Jim1911 wrote: | | Since DuDE is already installed, will I need to do anything extra other than changing the quotes? | The changes should be done inside the pet-package!!!!!! Before installation of snap
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Sat 01 May 2010, 16:45 Post subject:
|
|
Version 0.2.1
See main post
This is a minor bugfix-release.
Not tested in Quirky
Changelog
- Updated fixmenus
- Bugfix: Improved globicons settings
- Bugfix: .desktop files containing " in Exec crashed Ptray (thanks to jim1911)
- Bugfix: Define HOME in fixmenus for Puppy update script (thanks to BarryK)
- Bugfix: Default-wizard crashed when default-script is empty. (thanks to DaveS)
- Bugfix: Desktop menu misses corner configuration
_________________ Stardust resources
|
|
Back to top
|
|
 |
DaveS

Joined: 09 Oct 2008 Posts: 3669 Location: UK
|
Posted: Sun 02 May 2010, 09:42 Post subject:
|
|
Confirm Default wizard fixed
_________________ Spup Frugal HD and USB
Root forever!
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Wed 05 May 2010, 01:37 Post subject:
|
|
Hi guys,
I just installed Quirky-1, and DuDE.. there is plenty of JWM stuff missing but I did manage to persuade Barry to put in the background stuff for retrovol, but forgot to mention the new blinky and freememapplet. They are called differently in Q-1 and are true tray apps so no need to swallow.
Now they are called in /usr/sbin/delayedrun, which is called in ~/.xinitrc.
At line 31 in /usr/sbin/delayedrun you see this..
| Code: | #this goes into the tray...
CURRPS="`ps`"
if [ "`echo "$CURRPS" | grep -E 'lxpanel|fbpanel'`" != "" ];then
freememapplet_tray & #created by BK.
sleep 0.1
blinky_tray & #created by Lior Tubi and MU.
sleep 0.1
fi |
Make it look like this..
| Code: | #this goes into the tray...
CURRPS="`ps`"
if [ "`echo "$CURRPS" | grep -E 'lxpanel|fbpanel'`" != "" ];then
freememapplet_tray & #created by BK.
sleep 0.1
blinky_tray & #created by Lior Tubi and MU.
sleep 0.1
elif [ "`echo "$CURRPS" | grep -E 'jwm'`" != "" ];then
freememapplet_tray ${BGOPT} &
sleep 0.1
blinky_tray ${BGOPT} &
sleep 0.1
fi |
The BGOPT variable is already defined, it is the JWM tray colour, though you see in my screeny, perhaps it's not reading it too well... maybe in DuDE the structure of the bottom tray is different or in a different place? You can have that one ziggy, since you are the one who is intimate with the DuDE...(lucky for me you are in Norway ) Later... after an X restart it's ok, but Barry's little cpu temp applet is missing, ah well couldn't be so easy eh?? (Aha.. the temp applet segfaults in jwm and fbpanel.. that's out a my league, also DuDE leaves a gap for old freememapplet)
Do this before you install, DuDE, oh, do an X restart make sure the tray apps work.
Now install Pwidgets (if you like) and then DuDE.
Enjoy.
Cheers
| Description |
|
| Filesize |
3.82 KB |
| Viewed |
1119 Time(s) |

|
| Description |
|

Download |
| Filename |
quirky-1-DuDE-0.2.1.jpg |
| Filesize |
50.93 KB |
| Downloaded |
337 Time(s) |
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Wed 05 May 2010, 04:15 Post subject:
|
|
| Mick wrote: | | You can have that one ziggy, since you are the one who is intimate with the DuDE...(lucky for me you are in Norway Laughing ) | I'm soon in Australia, and you are my dude
_________________ Stardust resources
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7018 Location: qld
|
Posted: Wed 05 May 2010, 04:18 Post subject:
|
|
OMG
I better book a flight to Norway!
Also the segfault of the temp applet is intermittent, I'll file a bug report with Barry.
BTW, the old freememapplet is still in Quirky, just need to call it if you want, not sure if it conflicts with the newer freememapplet_tray.
Cheers
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sun 09 May 2010, 07:05 Post subject:
|
|
Quirky-Dude
| Description |
|

Download |
| Filename |
Quirky-DuDe.png |
| Filesize |
500.26 KB |
| Downloaded |
327 Time(s) |
Last edited by jpeps on Sun 09 May 2010, 21:00; edited 1 time in total
|
|
Back to top
|
|
 |
zigbert

Joined: 29 Mar 2006 Posts: 5241 Location: Valåmoen, Norway
|
Posted: Sun 09 May 2010, 14:50 Post subject:
|
|
Quirky DuDE look good....... but I see that we need an update for tray-services.
Sigmund
_________________ Stardust resources
|
|
Back to top
|
|
 |
|
|
Page 5 of 14 [202 Posts] |
Goto page: Previous 1, 2, 3, 4, 5, 6, 7, ..., 12, 13, 14 Next |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|