Macpup 511

For talk and support relating specifically to Puppy derivatives
Message
Author
User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#67 Post by runtt21 »

How to check Free space in the save file. First load the systray module. Menu-settings-Modules. In the window that opens scroll down to the shelf category And load systray.

Image

Then add it to a shelf.Right click on the shelf,Then contents. Find systray in the next window and click add gadget.

Image

This will show you puppy's tray apps .

Image

Or on the right side shelf.

Image

I keep this module loaded all the time but I only use it when want to check on my free space.I dont use it all the time.I cant theme it or change the background.The right side shelf is only on the first desktop .Systray will show up on all the others even though they don't have that shelf.

picatrix
Posts: 53
Joined: Fri 10 Mar 2006, 17:01

#68 Post by picatrix »

Thanks for the Systray hint, runtt21!
Image

User avatar
txemijendrix
Posts: 6
Joined: Sat 20 Nov 2010, 23:42
Location: Bilbao, Spain
Contact:

Conky and Urxvt terminal transparency in Macpup 511

#69 Post by txemijendrix »

Hi all.
I'm going to explain the way I did it to obtain a transparent Conky in Macpup. As a bonus, I'll show you the way to make transparent the Urxvt terminal at the end of this post.

A.- Installing qiv.
Qiv is a very small and pretty fast gdk/Imlib image viewer. it will be used as a canvas for Conky and Urxvt.

1.- Open the Puppy package manager (Applications -> Setup -> Puppy package manager).
2.- Click on Configure package manager button at the bottom left corner.
3.- In the Choose repositories section, mark the boxes of the ubuntu repositories (main, multiverse and universe) and click OK.
4.- Close the Puppy package manager and reopen it, so it reflects the new added repositories.
5.- In the Find field at the bottom left corner type qiv and click on the Go button.
6.- The program will show you only one result: qiv_2.2.2-1. Install it and the dependencies (libimlib2 and libmagic1)
7.- Finally, the program tells you it's gonna install the following packages:
- qiv_2.2.2-1
- libimlib2_1.4.2-5build1
- libmagic1_5.03
The final size once installed is 3Mb, not so much.
8.- Click on Download and install all packages.

B.- Installing Conky

1.- Go back to the Puppy package manager and In the Find field at the bottom left corner type conky and click on the Go button.
2.- The search gives you four packages, choose conky-all_1.8.0 and install it as before.

C.- Setting up a startup file

1.- Create a new text file in /root/Startup/ and name it as you like, in my case conkyBoot.
2.- Open it with Geany and write the following:

Code: Select all

#!/bin/bash
qiv -z /root/background.jpg
conky -d
Save the file.
3.- Make the file executable. Open a terminal and write

Code: Select all

chmod a+x /root/Startup/conkyBoot
D.- Setting up Qiv
Qiv needs to have the same background as your window manager. If you are using an image in, lets say, /root/images/ called wallpaper.jpg, you got 2 options:

1.- Change the second line in conkyBoot from qiv -z /root/background.jpg to qiv -z /root/images/wallpaper.jpg
2.- Make a simbolic link of the wallpaper.jpg file and put it in /root, then rename the link to background.jpg.
If you want to use a background from a jed file, see a previous post by CatDude that shows how to extract the background from it, though it would be easier if Runtt21 provide us with the background images as jpg or png.http://murga-linux.com/puppy/images/icons/icon10.gif

E.- Setting up Conky..
In plain, conky saves its configuration in a file named .conkyrc in /root. As it begins with a . it's a hidden file so you'll have to press the eye icon in rox to be able to see it. If you haven't run conky before don't worry, it doesn't exist.

1.- Open Geany and open /root/.conkyrc or create a new file if it doesn't exist and save it as .conkyrc in /root.
2.- The settings relative to the display settings that I use are these:

Code: Select all

# Conky configuration
background yes
# Text
uppercase no
override_utf8_locale yes
font Sansation:style=Light size=10
use_xft yes
xftfont Metro
# Window
own_window yes
own_window_type normal
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_transparent yes
double_buffer yes
total_run_times 0
update_interval 1.0
minimun_size 250 600
draw_shades yes
draw_outline no
draw_graph_borders yes
stippled_borders 1
border_margin 1
border_width 1
alignment bottom_right
gap_x 4
gap_y 4
no_buffers yes
uppercase no
user_spacer yes
That will give you a transparent conky display aligned to the bottom right. You can find the fonts I use here: http://www.fontsquirrel.com/. Look for Metro and Sansation.

3.-If you got blank .conkyrc file copy the previous code to your file. Also add this to have something to show.

Code: Select all

TEXT
${font Metro:size=10}${color6}    .: Conky & MacPup :. 
${font Sansation:size=10}${color}S.O. $sysname $kernel ${color} in ${color}${machine}
${color}PC: ${color}${pre_exec cat /proc/cpuinfo | grep 'model name' | sort -u | cut -c14-33,44-60}
${color1}${font Metro:size=30}${time %k:%M} ${goto 180}${color}${font Metro:size=10}${time %d/%b/%Y}
 ${font Sansation:size=10} ${color}Uptime: $uptime

${color4}${font Metro:size=10}Monitors${voffset 1}${hr 0}

${color4}CPU 1: ${color}${cpu cpu0}% ${color4}${goto 175}CPU 2: ${color}${cpu cpu1}%
${color2}${cpugraph cpu0 25,150 ffaa00 aaffff}${goto 175}${color2}${cpugraph cpu1 25,150 ffaa00 aaffff}
${color4}${font Metro:size=8}Ram : ${font Sansation:size=10}${color}$mem in use           ${color}$memmax total 
${color4}${font Metro:size=10}${goto 50}$memperc% ${font Sansation:size=10}${membar}
${color4}${font Metro:size=8}Swap: ${font Sansation:size=10}${color}$swap${color1} / ${color}$swapmax ${color} - ${color4}$swapperc% ${swapbar}
${color4}${font Metro:size=8}Charge:${font Sansation:size=10} ${color}(${color}$loadavg${color})
${color4}${font Metro:size=8}Processes: ${font Sansation:size=10}${color}$processes ${color}Running: ${color}$running_processes 
4.- Conky itself exceeds the goal of this post, so I'll keep on. Save the file
5.- Copy the ttf and otf font files, if you have downloaded them, to /root/.fonts. If that directory doesn't exist, create it.

F.- Making Urxvt Terminal transparent.
The good thing about using qiv, probably it happens the same with the solution stated by CatDude, is that also helps to make Urxvt transparent.
You got to edit the file /root/.Xdefaults. These are my settings:

Code: Select all

rxvt.keysym.0xFF50: \033[1~
rxvt.keysym.0xFF57: \033[4~
rxvt.saveLines: 500
rxvt.font: x:7x14,xft:mono
rxvt.boldFont: x:7x14,xft:mono
rxvt.italicFont: xft:mono:italic:autohint=true
rxvt*background: black
rxvt*foreground: #00ff00
rxvt*scrollBar: false
rxvt*transparent: true
rxvt*inheritPixmap: true
rxvt*tintColor: black
rxvt*shading: 80
You control the transparency level with the parameter rxvt*shading. 100 means transparent and 0 opaque.

Now just restart X and there you are. Conky and Urxvt with transparency.
Hope this helps.
Attachments
pantallazo 02 MacPup 511.jpg
This capture is the results of the setup explained in this post
(131.75 KiB) Downloaded 757 times
Last edited by txemijendrix on Wed 24 Nov 2010, 19:51, edited 1 time in total.
[b]Txemi Jendrix[/b]
_________________________________________________________

[url=http://www.txemijendrix.com]txemijendrix.com[/url]: Graphic and Web Design.

cgt_1991
Posts: 29
Joined: Sat 10 Oct 2009, 20:00
Location: Bogota, Colombia
Contact:

#70 Post by cgt_1991 »

txemijendrix thanks, looks great conky and urxvt terminal, very nice:)

edit:
I followed your instructions and install conky very well, actually see the transparency, :) , but with urxvt not work for me, instead of being transparent background is pink, and look at the file. Xdefaults. but is equal to the sample.

thanks and forgive my English with google translator;)

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#71 Post by runtt21 »

txemijendrix ,Sir,Thank you very much!!!

Saw this on twitter,Had to use google translate on it .Cool review:

http://www.linux-community.de/Internal/ ... um=twitter

Still At #3 today but we gained some ground on mint.[/url]
Attachments
day7.jpg
(22.9 KiB) Downloaded 3470 times

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#72 Post by runtt21 »

This is the How to for shelves. Just adding a little more info to what is in the first post of the thread.You use the Shelf settings window to set up and configure your shelves.Menu-settings-shelves You set the size,background,position,setting for apps being over or under it, And if you want it on all or just one desktop here.As a personal rule If I want a shelf on just one desktop I set it up while I am on that desktop.

Image

Jasper

#73 Post by Jasper »

Hi,

I am under the impression (1) that Macpup is a Puppy and (2) further that it is based upon Lupu 5.1.1 and (3) even further that despite its attractiveness and obvious attraction it does neither more nor less than Lupu 5.1.1.

If am correct (even in my first point) does this not mean that Puppies are collectively the outright stars of the Linux ratings for the last seven days?

My regards

Added after reflection:

(1) 2,722 views 'buntus as a group
(2) 2,165 views Puppies as a group
(3) 1,848 views Mint
then 1,384 views Fedora (part of a group ?)

Image
Fire and rain
with congratulations to BarryK
and all his dedicated Puppy followers
including the Macpup and Lupu teams.
Last edited by Jasper on Tue 23 Nov 2010, 02:51, edited 1 time in total.

User avatar
maxpro4u
Posts: 293
Joined: Sat 19 Jun 2010, 18:20
Location: Rittman,Ohio,USA, In dog years,I'm dead
Contact:

#74 Post by maxpro4u »

I am having an issue with the sound. how do i increase the buffering? mplayer is what i am trying to use.
Dell D610 1.7M w/1024mb
Testing Slacko and a few others
I'm Max Wachtel and I approve this message.
Registered Linux User #393236

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

Runt's Generic smart alec answer LOL

#75 Post by runtt21 »

Lupu can't do fire and rain at the same time..... :lol:

Image

We don't make puppylinux,we make puppylinux beautiful. :D

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#76 Post by runtt21 »


User avatar
joel
Posts: 185
Joined: Thu 26 Feb 2009, 16:39
Location: Buffalo, NY & Nottingham, England

#77 Post by joel »

@Runtt- In response to your post a few pages back I'm curious,what do you foresee for macpup in the future? The most complete e17 puppy distro, or the most compatible e17 puppy disto?

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#78 Post by runtt21 »

That depends on what all you mean like that. I would like to have a pure e17 distro with out any other wm's But I may not do that. There have been times in older macpup when something would run better in jwm than e17.But who knows..... They have so much stuff for e17 now, a webkit browser and media player, etc . That stuff may be more than I can pull off.My main goal is to have macpup continue. I had so many problems with the last 3-4 snapshots in 4.3.1 ,That is why it took 6 months for a new macpup to get built. I really thought that macpup was coming to an end.If not for 01micko tipping me off to lupu , This projects could have been Done.

And now our little macpup is in a dog fight at DW,only 65 hits out of first place.
Attachments
day8.jpg
(23.16 KiB) Downloaded 3682 times
Last edited by runtt21 on Tue 23 Nov 2010, 23:10, edited 1 time in total.

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#79 Post by runtt21 »

Today a little info about themes and backgrounds.

Personal themes/backgrounds are in /root/.e/e/themes or backgrounds.
System themes /backgrounds are in /usr/share/enlightenment/data/themes or backgrounds.

Dont remove the system themes. E uses these if the theme you are using is missing parts like a clock....

[please note this is only for mp 511]Most backgrounds will still work after you run edje_convert on them. For example take a background PUP1.edj .Put it some where you can work on it like /root/working , open rox there and run edje_convert PUP1.edj after that move it where it goes and run it.

Use menu -settings-themes or wallpapers to change stuff.

Image

If you want to use your own background ,put the png or jpeg where you can find it .Then open the wallpaper settings window and click on picture. Then in the window that opens go find and select it .You then get some options to pick from after that it will build a .edj file for you and install it.

If you click on the advanced button you can chose to have the background only on one desktop or all of them.

Image

After using edje_convert on an old background..

Image
Last edited by runtt21 on Sun 10 Jun 2012, 22:30, edited 1 time in total.

User avatar
puppyluvr
Posts: 3470
Joined: Sun 06 Jan 2008, 23:14
Location: Chickasha Oklahoma
Contact:

#80 Post by puppyluvr »

:D Hello,
Runtt21, I tried something today...Compositing..
Normally a hassle on my old i810..(wont run Compiz)
Well...

WOW...E-17 has some slick effects I never new about...
Just dont enable "Gadgets" with composite on...Kills E...
I`m gonna play with this and get back... 8)
Close the Windows, and open your eyes, to a whole new world
I am Lead Dog of the
Puppy Linux Users Group on Facebook
Join us!

Puppy since 2.15CE...

User avatar
txemijendrix
Posts: 6
Joined: Sat 20 Nov 2010, 23:42
Location: Bilbao, Spain
Contact:

some answers and a logo idea

#81 Post by txemijendrix »

@cgt_1991: I don't know why are you getting the hotpink screen in Urxvt. I always run Macpup with Xorg and 24 bits depth color. Maybe it's related to your problem, but I'm just guessing.
@runtt21: You are welcome. I'm enjoying this distro a lot :-)

By the way, I've just made a logo for Macpup; maybe you'll find it interesting.
It's a first try, just an idea I've had and I wanted to share it.

Bye.
Attachments
macpup-logo_tji_01.png
(65.06 KiB) Downloaded 5192 times
[b]Txemi Jendrix[/b]
_________________________________________________________

[url=http://www.txemijendrix.com]txemijendrix.com[/url]: Graphic and Web Design.

User avatar
puppyluvr
Posts: 3470
Joined: Sun 06 Jan 2008, 23:14
Location: Chickasha Oklahoma
Contact:

#82 Post by puppyluvr »

:D LOL...
Close the Windows, and open your eyes, to a whole new world
I am Lead Dog of the
Puppy Linux Users Group on Facebook
Join us!

Puppy since 2.15CE...

rokytnji
Posts: 2262
Joined: Tue 20 Jan 2009, 15:54

It took me awhile

#83 Post by rokytnji »

Between Out house remodeling and fixing motorcycles I did not have much time or energy to get my Desktop to look the way I wanted it to. Tried both txemijendrix and CatDude how tos. Both worked OK for me but was not happy with my look. So I tried something different using default E17 Theme and backround. Not using qiv or feh. Below is what I ended up with. Simple and elegant for Me (IMO). Different strokes for different folks is all. :)

Code: Select all

#avoid flicker
double_buffer yes

#own window to run simultanious 2 or more conkys
own_window  yes
own_window_transparent no
own_window_type normal
own_window_hints undecorate,sticky,skip_taskbar,skip_pager 

#borders
draw_borders no
border_margin 3

#shades
draw_shades yes

#position
gap_x 0
gap_y 4
alignment top_left

#behaviour
update_interval 1

#colour
default_color  8f8f8f
#default_shade_color 000000
own_window_colour 262729

#font
use_xft yes
xftfont sans:size=9

# Force UTF8? note that UTF8 support required XFT
override_utf8_locale yes

#to prevent window from moving
use_spacer none
minimum_size 1024 0

#mpd
#mpd_host localhost
#mpd_port 6600

TEXT
${alignc}Date: ${color e0e0e0}${time %d/%m/%y}${color}  Time: ${color e0e0e0}${time %H:%M}${color}  |  Kernel: ${color e0e0e0}$kernel${color}  Uptime: ${color e0e0e0}${uptime_short}${color}  |  Cpu: ${color e0e0e0}${cpu}%${color}  Ram: ${color e0e0e0}${memperc}%${color}  Swap: ${color e0e0e0}${swapperc}%${color}  Disk: ${color e0e0e0}${fs_used_perc /}%${color}  |  Motherboard: ${color e0e0e0}${acpitemp}°C${color}  Cpu: ${color e0e0e0}${acpitemp}°C${color}  Disk: ${color e0e0e0}${acpitemp}°C${color}  |  ${if_existing /proc/net/route wlan0}Signal: ${color e0e0e0}${wireless_link_qual wlan0}%${color}  Up: ${color e0e0e0}${upspeed wlan0} kb/s${color}  Down: ${color e0e0e0}${downspeed wlan0} kb/s${color}${else}${if_existing /proc/net/route wlan0}Up: ${color e0e0e0}${upspeed wlan0} kb/s${color}  Down: ${color e0e0e0}${downspeed wlan0} kb/s${color}${endif}${else}Network Unavailable${endif}${alignc}
Everything below "Text" in /etc/conky.conky.config is in one long line since this is a horizontal conky. My simple startup script Works for me.

Code: Select all

#!/bin/bash
conky &


Just make a text file in /startup and make it executable.
Last edited by rokytnji on Thu 20 Jan 2011, 08:11, edited 1 time in total.

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#84 Post by runtt21 »

@ puppyluvr read the first post in this thread again. Esp the part about dont load composite.

@txemijendrix that's cool But We want to avoid anything with apples or anything real osx looking . Not a good Idea.

WE like stuff like this...
Attachments
full-black.png
(45.1 KiB) Downloaded 3778 times

User avatar
runtt21
Posts: 1649
Joined: Sun 08 Jun 2008, 02:43
Location: BigD Texas
Contact:

#85 Post by runtt21 »

@rokytnji Dude that's cool

We dropped back to #7 today at DW, Things will start to settle down soon.

The next thing I want to show is the use of EFM the enlightenment file manager. It is cool BUT I need to show a few thing bout it. I'll start on that later. Some new themes on the way in a few days. :D

User avatar
maxpro4u
Posts: 293
Joined: Sat 19 Jun 2010, 18:20
Location: Rittman,Ohio,USA, In dog years,I'm dead
Contact:

#86 Post by maxpro4u »

I just picked up a used compaq evo. Macpup runs great(and so does the other pups I put on it already) but it is running a lot hotter than luci238 (which I am using at the moment). Is there a setting for the fan?
Dell D610 1.7M w/1024mb
Testing Slacko and a few others
I'm Max Wachtel and I approve this message.
Registered Linux User #393236

Post Reply