Page 85 of 130

Posted: Sun 17 Jul 2011, 09:13
by maik.murks
:wink:
{rsomd}

Posted: Sun 17 Jul 2011, 10:38
by lowrider
Just playing with Puppy 5.2 and E16 Windowmanager
Image

Posted: Sun 17 Jul 2011, 16:11
by Aitch
Love that electric blue...lowrider

Very smooth :D

Aitch :)

Posted: Thu 21 Jul 2011, 13:09
by stu90
Lucid Puppy 265.
Crunchbang conky, tint2 panel with a mygtkmenu launcher, transparent urxvt terminal - no rox pinboard as default for clean look, can be switched on / off on the fly for quick access to normal puppy desktop icons / drives.

Image
full res:
http://i.imgur.com/WZXTW.jpg

Posted: Thu 21 Jul 2011, 22:44
by Q5sys
stu90 wrote:Lucid Puppy 265.
Crunchbang conky, tint2 panel with a mygtkmenu launcher, transparent urxvt terminal - no rox pinboard as default for clean look, can be switched on / off on the fly for quick access to normal puppy desktop icons / drives.

Image
full res:
http://i.imgur.com/WZXTW.jpg
as always... I love your work. :)

Posted: Fri 22 Jul 2011, 12:20
by sc0ttman
stu90 wrote:no rox pinboard as default for clean look, can be switched on / off on the fly for quick access
How are you achieving this? I wanna compare notes!

Posted: Fri 22 Jul 2011, 12:56
by stu90
Q5sys wrote:
as always... I love your work. :)
Thanks Q5sys 8)

To be honest i wasn't to happy with the conky - i like this one more and it also does the weather as well.

Image
full res:
http://i.imgur.com/j8Ja2.jpg

Posted: Fri 22 Jul 2011, 13:03
by stu90
sc0ttman wrote:
stu90 wrote:no rox pinboard as default for clean look, can be switched on / off on the fly for quick access
How are you achieving this? I wanna compare notes!
Hi sc0ttman,
I use a Yad script in /root/my-applications/bin
and a pinstate text file in /root/Choices/ROX-Filer with ON or OFF in it depending on desktop state.
This is not persistent though as default is set to no pinboard in .xinitrc

Code: Select all

TITLE="Desk Set"
VER="0.1"
TEXT=" <b>Turn desktop and icons On?</b> "
TEXT1=" <b>Turn desktop and icons Off?</b> "

PINFO="`cat /root/Choices/ROX-Filer/pinstate`"
if [[ "$PINFO" == "OFF" ]]; then

### turn desk and icons on ###
    ON=$(yad --title="$TITLE $VER" --text="$TEXT" --button="gtk-quit:1" --button="gtk-apply:0" )
    RESULTS=$?
   
    case $RESULTS in 
    0)
    rox --pinboard=/root/Choices/ROX-Filer/PuppyPin
    echo "ON" > /root/Choices/ROX-Filer/pinstate
    echo "Turned desk and icons ON" && exit
    ;;
    1)
    echo "Exit" && exit
    ;;
    esac
    
else    

### turn desk and icons off ###
    OFF=$(yad --title="$TITLE $VER" --text="$TEXT1" --button="gtk-quit:1" --button="gtk-apply:0" )
    RESULTS=$?
    
    case $RESULTS in 
    0) 
    rox --pinboard=
    echo "OFF" > /root/Choices/ROX-Filer/pinstate
    echo "Turned desk and icons OFF" && exit
    ;;
    1)
    echo "Exit" && exit
    ;;
    esac

fi

Posted: Fri 22 Jul 2011, 20:10
by lowrider
@stu90
so nice, reminds me of my crunchbang.

@all
we all know puppy is great, but is it ok to post a screenshot of other OS here in this thread or is there perhaps a other thread here on the forum for this? i have searched a bit around with no success. anyway, dont want to mess up this fine thread so i post 2 screenshots of my crunchbang only as a url:
clean: http://i55.tinypic.com/ehf8nr.png
dirty: http://i55.tinypic.com/2eldu02.png

so, look on the ram-usage on the conky and keep in mind there is a chromium running in the back. not bad for a fullfeed lightweight distro...

Posted: Fri 22 Jul 2011, 21:03
by sc0ttman
stu90 wrote:
sc0ttman wrote:
stu90 wrote:no rox pinboard as default for clean look, can be switched on / off on the fly for quick access
How are you achieving this? I wanna compare notes!
Hi sc0ttman,
I use a Yad script in /root/my-applications/bin
and a pinstate text file in /root/Choices/ROX-Filer with ON or OFF in it depending on desktop state.
This is not persistent though as default is set to no pinboard in .xinitrc
Nice, I may give my own script a change or two...

And what is the "not conky" thing that you're running to show system info over the wallpaper? Is it a root-tail thing, like PMConky (from goingnuts)? Cos I can't get that to work with later versions of JWM, but if your method is different I may give that a go..

Posted: Fri 22 Jul 2011, 22:37
by Q5sys
stu90 wrote:
Q5sys wrote:
as always... I love your work. :)
Thanks Q5sys 8)

To be honest i wasn't to happy with the conky - i like this one more and it also does the weather as well.

Image
full res:
http://i.imgur.com/j8Ja2.jpg
I was never a fan of conky either. I usually stick with Gkrellm. However those fancy lua themes for conky have me thinking twice...
Image

Posted: Sat 23 Jul 2011, 12:03
by stu90
lowrider wrote:@stu90
so nice, reminds me of my crunchbang.

@all
we all know puppy is great, but is it ok to post a screenshot of other OS here in this thread or is there perhaps a other thread here on the forum for this? i have searched a bit around with no success. anyway, dont want to mess up this fine thread so i post 2 screenshots of my crunchbang only as a url:
clean: http://i55.tinypic.com/ehf8nr.png
dirty: http://i55.tinypic.com/2eldu02.png

so, look on the ram-usage on the conky and keep in mind there is a chromium running in the back. not bad for a fullfeed lightweight distro...
Hi lowrider - nice setup 8)
Crunchbang with its minimalist style was a firm favorite of mine while distro hopping - if i didn't use puppy full time then i would use Crunchbang.

Posted: Sat 23 Jul 2011, 12:16
by stu90
sc0ttman wrote: Nice, I may give my own script a change or two...

And what is the "not conky" thing that you're running to show system info over the wallpaper? Is it a root-tail thing, like PMConky (from goingnuts)? Cos I can't get that to work with later versions of JWM, but if your method is different I may give that a go..
Hi sc0ttman,
Sorry i wasn't to clear in my previous post - that is still conky i am using just a different .conkyrc + a weather script to the original.
8)

Posted: Sat 23 Jul 2011, 12:20
by stu90
Q5sys wrote:
I was never a fan of conky either. I usually stick with Gkrellm. However those fancy lua themes for conky have me thinking twice...
Image
Hi Q5sys,

Yes there are some pretty impressive conky setups about - i think Dejan555 posted about using the above on dpup? 8)

Posted: Sat 23 Jul 2011, 20:51
by Q5sys
stu90 wrote:Hi Q5sys,

Yes there are some pretty impressive conky setups about - i think Dejan555 posted about using the above on dpup? 8)
yea thats where I found it. there are a ton of other nifty setups people have done with lua and conky like
Image

btw... what tint2 config are you using? would you mind upping a tar.gz of it?

Posted: Sat 23 Jul 2011, 22:00
by maik.murks
:wink:
{rsomd}

Posted: Sun 24 Jul 2011, 11:48
by stu90
Q5sys wrote: yea thats where I found it. there are a ton of other nifty setups people have done with lua and conky like

btw... what tint2 config are you using? would you mind upping a tar.gz of it?
Hi Q5sys,

i have attached tint2 theme below 'pup-default' - i made it with a Yad gui for basic tint2 theme making / switching.

Image

cheers.

Posted: Tue 26 Jul 2011, 04:10
by puppyluvr
:D Hello,
I guess I`m still in my "Blue period".. 8)
Image

Posted: Tue 26 Jul 2011, 21:37
by dejan555
I realized I haven't posted in a while :lol:

Fluxbox, wbar with Bluestep Humanity iconset, wallpaper is photo I took few days ago.

Image

Posted: Thu 28 Jul 2011, 02:16
by steve_s
dejan: great again!