You are not logged in.

#241 2016-10-07 12:51:52

geolaw
New Member
Registered: 2016-05-28
Posts: 3

Re: Show us your conky

Here's a screen shot of my full hydrogen desktop with my wallpaper and conkys

http://geolaw.com/screenshot_00017.png

EDIT: ---Please use thumbnails. Read the posts immediately above!---

Last edited by damo (2016-10-07 13:00:17)

Offline

#242 2016-10-09 07:58:12

nore
>2⁹
From: squirrels' nest
Registered: 2015-09-29
Posts: 537

Re: Show us your conky

geolaw, nice. Are those orangy icons images or a font? If it is a font, where can I find it?

3 × conky, tint2, XFCE panel.
TPonSH4Z.jpg
Files: sys | clock | cal

Offline

#243 2016-10-10 03:11:21

geolaw
New Member
Registered: 2016-05-28
Posts: 3

Re: Show us your conky

This is from a conky setup I downloaded somewhere called "my favorite conky"
Looks like this is it on google drive :
https://docs.google.com/file/d/0B8cENLt … hiVkE/view

It uses the ConkySymbols.ttf font

https://github.com/medisun/dotfiles/blo … ymbols.ttf

The CPU window for instance uses this - so "f" maps to the CPU symbol

${color0}${font ConkySymbols:size=16}f${font}${color}  ${color2}PROCCESSOR»${color}

ConkySymbols --> http://geolaw.com/screenshot_00018.png

===
Mod edit: Please use thumbnails.  Changed image for a link.

Last edited by Sector11 (2016-10-20 17:03:30)

Offline

#244 2016-10-20 11:03:04

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,641

Re: Show us your conky

Was not here for a long time...  wink

plank5.th.jpg

Offline

#245 2016-10-20 16:25:34

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

^ And it shows that you have been 'conkying' too!  Very nice!


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#246 2016-10-20 17:01:21

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

geolaw wrote:

This is from a conky setup I downloaded somewhere called "my favorite conky"
Looks like this is it on google drive :
https://docs.google.com/file/d/0B8cENLt … hiVkE/view

It uses the ConkySymbols.ttf font

That link doesn't show what it looks like.  sad

Here's a working sample, starts with your example:

${color0}${font ConkySymbols:size=16}f${font}  ${color2}PROCCESSOR»${color}

${font ConkySymbols:size=16}abcde${font} a b c d e
${font ConkySymbols:size=16}fghij${font} f g h i j
${font ConkySymbols:size=16}klmno${font} k l m n o
${font ConkySymbols:size=16}pqrst${font} p q r s t
${font ConkySymbols:size=16}uvwxy${font} u v w x y
${font ConkySymbols:size=16}z${font}             z

${font ConkySymbols:size=16}ABCDE${font} A B C D E
${font ConkySymbols:size=16}FGHIJ${font} F G H I J
${font ConkySymbols:size=16}KLMNO${font} K L M N O
${font ConkySymbols:size=16}PQRST${font} P Q R S T
${font ConkySymbols:size=16}UVWXY${font} U V W X Y
${font ConkySymbols:size=16}Z${font}             Z

2016_10_20_13_54_02_Scrot11.jpg
NOTE:  conkysymbols does not do spaces or numbers

You could use ${if_match} to get different symbols, for example: Wireless UP = g  Down = G


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#247 2016-11-08 01:44:48

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,611

Re: Show us your conky

Not a conky issue - most likely Void linux issue - but has anyone experienced their hwmon settings change?

Specifically -

sensors output - on my system it correlates to hwmon 0 and hwmon 1t:

scrot-shot-mon71478569265.jpg

so the Core temps are hwmon 1.

Every now an then, that output will reverse so that the Core temps will be in hwmon 0.

I suspect it's related to some package getting upgraded, but this is the first distro where I've had it happen. Curious if someone else has seen this.


You must unlearn what you have learned.
    -- yoda

Online

#248 2016-11-08 01:57:02

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

That's a known issue for a while now, since my Ubuntu days (2007-2009).  It is why I do not use hwmon but rather platform.

From Conky Pitstop:

EDIT-ADDITIONAL: from stinkeye

Sometimes you might find that when you run sensors after a restart the sensors load in a different order k10temp-pci-00c3 may not necessarily be shown first. If this is the case the above commands will give you a different reading, as (in the example above) you are matching the first instance of temp1. To get around this, you can call each sensor individually by typing the name of the sensor after the sensors command like so:

sensors k10temp-pci-00c3

Then you can use similar grep and awk commands to get the temp number

sensors k10temp-pci-00c3 | grep 'temp1' | awk -F'+' '{print $2}' | awk -F'.' '{print $1}'

You don't need the sed commands as there will only be one temp1 for grep to match

WARNING I suspect that the loading order of the sensors will also affect the contents of the hwmon folders used in method 2 below. Note: confirmed, it does - at times (thank you VastOne).


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#249 2016-11-08 02:22:40

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,611

Re: Show us your conky

That's interesting. No actual fix for it then so that sensors always load in a given order.


You must unlearn what you have learned.
    -- yoda

Online

#250 2016-11-08 03:33:25

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

If you use /hwmon - not to the best of knowledge.

However the other methods 'seem' to be stable.  roll {famous last words}

I have never had a problem with /platform since I started using it.

And grep, awk, sed, etc. - are still very popular.  smile


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#251 2016-11-08 13:45:29

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,611

Re: Show us your conky

I use to use a bash script - awk command - that dk75 wrote. May go back to that.
Never tried the platform method, maybe go that route since it will be something new.


You must unlearn what you have learned.
    -- yoda

Online

#252 2016-11-08 15:25:13

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

OH!  A dk75 bash script for sensors?  I'd be interested in seeing that!  smile

Have you seen his ncal.awk script? --> PI3eo9x1.jpg

${execpi 3600 ncal -h | /media/5/Conky/scripts/ncal-h.awk}
#!/usr/bin/gawk -f
#####################################################################
# ncal.awk script by dk75                                           #
#                                                                   #
# usage:                                                            #
# ncal -h | ncal-h.awk             - Start: Sunday                  #
# ncal -h | ncal-h.awk monday=TRUE - Start: Monday                  #
#                             IE:                                   #
#  ${execpi 7200 ncal -h | /media/5/Conky/scripts/ncal-h.awk}       #
#                                                                   #
#####################################################################

BEGIN	\
{
	weekend[1]=7
	weekend[2]=1

	if ( ARGV[1]=="monday=TRUE" )
	{
		weekend[1]=6
		weekend[2]=7
	}

	today=strftime("%02d")
}

NR==1	\
{
	month=$1
	year=$2
}

NR>1	\
{
	gsub(/ {4}/," 0 ", $0)
	days[NR-1,1]=$1
	days[NR-1,2]=$2
	days[NR-1,3]=$3
	days[NR-1,4]=$4
	days[NR-1,5]=$5
	days[NR-1,6]=$6
	days[NR-1,7]=$7
}

END	\
{
	#############################################################
	# preparing and formatting data                              #
	#############################################################
	for ( i=1; i<=7; i++ )
	{
		for ( j=2; j<=7; j++ )
		{
			days[i,j]=sprintf("%02d", days[i,j])

			if ( days[i,j]=="00" )
				days[i,j]=".."

			if ( days[i,j]==today )
				days[i,j]="${color5}"days[i,j]"${color}"
			else
				days[i,j]="${color}"days[i,j]"${color}"
		}

		if ( i==weekend[1] )
			days[i,1]="${color5}"days[i,1]"${color}"
		else if ( i==weekend[2] )
			days[i,1]="${color5}"days[i,1]"${color}"
		else
			days[i,1]="${color1}"days[i,1]"${color}"
	}
	# ###########################################################

	#############################################################
	# displaying data                                           #
	#############################################################
	print "${alignc}${color6}"month"${color}"

	for ( j=0; j<=1; j++ )
	{
		for ( i=1; i<=7; i++ )
		{
			printf "${alignc}%s %s %s %s\n", days[i,1], days[i,2+j], days[i,4+j], days[i,6+j]
		}
	}

	print "${alignc}${color6}"year"${color}"
}

And this is my right conky - sensors, CPU and Mem conky:

TEXT
${alignc}${color5}Sensors
${color1}${swapbar 0}${color}
${color5}${alignc}TEMPS
${color6}CPU${color} ${platform f71882fg.2560 temp 2}°
${color6} MB${color} ${execpi 5 sensors k10temp-pci-00c3 | grep 'temp1' | awk -F'+' '{print $2}' | awk -F'.' '{print $1}'}°
${color6}SDA${color} ${hddtemp /dev/sda}°
${color6}GPU${color} ${nvidia temp}°
${color1}${swapbar 0}${color}
${alignc}${color5}CPU
${alignc}${color6}3.2 GHz
${alignc}${color5}CPU MHz
${color6}1${alignr}${color}${freq 1}
${color6}2${alignr}${color}${freq 2}
${color6}3${alignr}${color}${freq 3}
${color1}${swapbar 0}${color}
${color6}CPU Fan${color}
  ${platform f71882fg.2560 fan 1}
${color1}${swapbar 0}${color}
${alignc}${color5}CPU %
${alignc}${color6}A${color} ${if_match ${cpu cpu0} < 10}  ${cpu cpu0}\
${else}${if_match ${cpu cpu0} < 100} ${cpu cpu0}\
${else}${color9}${cpu cpu0}${color}${endif}${endif}
${alignc}${color5}${swapbar 0,20}
${alignc}${color6}1${color} ${if_match ${cpu cpu1} < 10}  ${cpu cpu1}\
${else}${if_match ${cpu cpu1} < 100} ${cpu cpu1}\
${else}${color9}${cpu cpu1}${color}${endif}${endif}
${alignc}${color6}2${color} ${if_match ${cpu cpu2} < 10}  ${cpu cpu2}\
${else}${if_match ${cpu cpu2} < 100} ${cpu cpu2}\
${else}${color9}${cpu cpu2}${color}${endif}${endif}
${alignc}${color6}3${color} ${if_match ${cpu cpu3} < 10}  ${cpu cpu3}\
${else}${if_match ${cpu cpu3} < 100} ${cpu cpu3}\
${else}${color9}${cpu cpu3}${color}${endif}${endif}
${color1}${swapbar 0}${color}
${alignc}${color6}Memory${color}
${alignc}${mem}
${alignc}${memmax}

Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#253 2016-11-08 16:44:20

PackRat
jgmenu user Numero Uno
Registered: 2015-10-02
Posts: 2,611

Re: Show us your conky

Sector11 wrote:

OH!  A dk75 bash script for sensors?  I'd be interested in seeing that!  smile

for core temperatures -

sensors | awk '/Core 0/ {gsub(/\+/,"",$3); gsub(/\..+/,"",$3); print $3}'

Match it up with my sensors output posted earlier - easy to swap out the "Core 0" and "$3" parts to output whatever part of sensors you want, and everything but the value is stripped out.

EDIT - just spotted that command on conky pit stop

I took a look at the platform method, my "/sys/devices/platform/<sensor>" directories actually have a "hwmon/hwmonX" directory - your system doesn't appear to go that deep. Not sure if those change, maybe I will try it with just one of the core temps and see if it gets whacked as well if/when it changes again.

platform method works:

scrot-shot-tue81478624653.jpg

I changed it for the spectrwm conky, next time this inversion happens, I can compare with the other window manager conkies.

Last edited by PackRat (2016-11-08 17:07:07)


You must unlearn what you have learned.
    -- yoda

Online

#254 2016-11-08 17:52:27

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

Well, my platform directory has a hwmon sub dir as well

/sys/devices/platform/f71882fg.2560/hwmon/hwmon1/

but there are no files in there ending with " _input " that conky uses.

Looking at ConkyPitstop you are seeing mrpeachy's setup, he wrote that awesome update.  smile

Hope this works for you. wink

Mine:


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#255 2016-11-09 14:15:38

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,641

Re: Show us your conky

^ Each OS is probably different.
This one under bunsenlabs does not show me archlinux. Still, it works.

hwmon.th.png--> mageia6 hwmonMGA.th.jpg
What is decisive is what

sensors -u

outputs.

My 2cent   smile

Last edited by unklar (2016-11-09 19:08:16)

Offline

#256 2016-11-09 16:27:50

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

Let me correct that for you unklar:

unklar wrote:

^ Each OS is probably different.

And different "desktops" in the same distro cause problems too at least where conky is involved.

OH! MY!  Love that sensors -u - never seen that before.

And there it is: " -u " in man page for sensors.  :8  DUH! :8

Thank you! Learned something useful and new today.
Richard, Schnaps and Bier for the "Stammtisch"!  big_smile

=============================
"Stammtisch" is German for "Conky Creators Table"  lol  lol  lol  lol  lol  lol  lol

Note to Non-German's - When visiting Germany "never" sit at an empty table labelled "Stammtisch".  It's a special table for "local regulars".


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#257 2016-11-09 19:10:38

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,641

Re: Show us your conky

^ Sector11

I was distracted and not yet finished with my demonstration (not from the "Stammtisch"  tongue )

Above a comparison picture (-> hwmon) with mageia6 inserted.  smile

Offline

#258 2016-11-09 19:46:32

Sector11
Mod Squid Tpyo Knig
From: Upstairs
Registered: 2015-08-20
Posts: 8,008

Re: Show us your conky

Oh ... is that on the same computer?
Now that is interesting.


Debian 12 Beardog, SoxDog and still a Conky 1.9er

Offline

#259 2016-11-10 11:51:16

unklar
Back to the roots 1.9
From: #! BL
Registered: 2015-10-31
Posts: 2,641

Re: Show us your conky

Yes, this is on the same computer.   smile

Offline

#260 2016-11-12 16:29:04

ragamatrix
Member
Registered: 2015-10-04
Posts: 427

Re: Show us your conky

an old archive "peachy" conky and a maya theme:
1478968114.png ... but the clock gives me a stiff neck  smile

Last edited by ragamatrix (2016-11-12 16:33:39)

Offline

Board footer

Powered by FluxBB