
GTK3/4 Themes by abhishekzambare 59 comments

GTK3/4 Themes by abhishekzambare 59 comments

GTK3/4 Themes by solsticeman 6 comments

GTK3/4 Themes by solsticeman 6 comments

GTK3/4 Themes by solsticeman 6 comments

Conky by iznogud78 17 comments

Conky by iznogud78 17 comments

Conky by donbcilly 8 comments

Conky by donbcilly 8 comments

Conky by donbcilly 8 comments

Gnome Shell Themes by madcap 44 comments

Conky by autocrosser1

Conky by autocrosser1

Conky by autocrosser1
if info.conkyversiondetection == "1.10" then
df=conky_ownpreexec("df -h | grep ^/dev/s | sort | grep -v 'efi' | grep -o 'sd[^ ]'")
To:
if info.conkyversiondetection > "1.10" then
df=conky_ownpreexec("df -h | grep ^/dev/s | sort | grep -v 'efi' | grep -o 'sd[^ ]'")
And see if that makes a difference. Also, I watched your presentation & saw that I forgot the RGB value for purple.... In the global variables section add:
themes.purple={148,0,211}
To fix that problem.
I will look in more detail this weekend....It is possible that the conky_ownpreexec may be needed to be rewritten--can you verify that this runs correctly?
df -h | grep ^/dev/s | sort |grep -o '[^ ]*$' | grep -v 'efi'
- Jul 25 2019

Conky by autocrosser1

Conky by autocrosser1
With only 1 partition the output should be root (/)...Normally I would have 2 partitions ( / & home). Was developed for/on Debian. If this answers your question---great--if not I will be available this weekend to look into it more. - Jul 17 2019

Conky by Markospoko 1 comment

Conky by Moob 10 comments

Conky by autocrosser1
-- user parameters, change them if you want.
use_theme = "blue" -- can be 'red','green','silver','gold','black','maroon','sienna', 'purple', 'white', 'blue' or 'default'
squash_cpu_cores = "no" -- display overall cpu speed, not per core
battery_low_alert = 10 -- low battery level alert, for laptops.
show_cpu = "yes" -- yes, detect CPU's presence and show CPU load
show_cpu_temp = "yes" -- yes, show cpu temp
show_gpu_temp = "yes" -- yes, show gpu temp
show_storage = "yes" -- yes, detect and show attached storage devices
show_memory = "yes" -- yes, show internal and swap memory
show_network = "yes" -- yes, detect and show network information
show_system = "yes" -- yes, show system info's such as cpu + gpu temp, fan speed cpu + chassis, uptime
show_processes = "no" -- yes, show running processes
------------------------------------------------------------------------
-- nothing exciting beyond here, trust me.. (see notes for moding use)
------------------------------------------------------------------------
require 'cairo'
-- global variables
themes={}
themes.red={.65,0,0}
themes.white={256,256,256}
themes.green={0,.65,0}
themes.silver={.752,.752,.752}
themes.gold={.831,.686,.215}
themes.black={.031,.031,.031}
themes.maroon={.501,0,0}
themes.sienna={.627,.321,.176}
themes.blue={0,0,256}
themes.tred=0
themes.tgreen=0
themes.tblue=0
And the lower area:
if conky_window == nil then return end
local cs = cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, conky_window.width, conky_window.height)
cr = cairo_create(cs)
-- detect hardware
conky_detect_hardware()
updates=tonumber(conky_parse('${updates}'))
-- default theme colors
themes.tred=.61
themes.tgreen=.81
themes.tblue=1
-- theme colors
if string.lower(use_theme) == "red" then
themes.tred=themes.red[1]
themes.tgreen=themes.red[2]
themes.tblue=themes.red[3]
end
if string.lower(use_theme) == "green" then
themes.tred=themes.green[1]
themes.tgreen=themes.green[2]
themes.tblue=themes.green[3]
end
if string.lower(use_theme) == "silver" then
themes.tred=themes.silver[1]
themes.tgreen=themes.silver[2]
themes.tblue=themes.silver[3]
end
if string.lower(use_theme) == "gold" then
themes.tred=themes.gold[1]
themes.tgreen=themes.gold[2]
themes.tblue=themes.gold[3]
end
if string.lower(use_theme) == "black" then
themes.tred=themes.black[1]
themes.tgreen=themes.black[2]
themes.tblue=themes.black[3]
end
if string.lower(use_theme) == "maroon" then
themes.tred=themes.maroon[1]
themes.tgreen=themes.maroon[2]
themes.tblue=themes.maroon[3]
end
if string.lower(use_theme) == "sienna" then
themes.tred=themes.sienna[1]
themes.tgreen=themes.sienna[2]
themes.tblue=themes.sienna[3]
end
if string.lower(use_theme) == "purple" then
themes.tred=themes.purple[1]
themes.tgreen=themes.purple[2]
themes.tblue=themes.purple[3]
end
if string.lower(use_theme) == "blue" then
themes.tred=themes.blue[1]
themes.tgreen=themes.blue[2]
themes.tblue=themes.blue[3]
end
Report back with the results..change the 3rd number to change the intensity of the blue. - May 24 2019

Conky by autocrosser1

Conky by autocrosser1
updates=tonumber(conky_parse('${updates}'))
-- default theme colors
themes.tred=.61
themes.tgreen=.81
themes.tblue=1
-- theme colors
And add:
if string.lower(use_theme) == "blue" then
themes.tred=themes.blue[1]
themes.tgreen=themes.blue[2]
themes.tblue=themes.blue[3]
- May 23 2019

Conky by autocrosser1

Conky by autocrosser1

Conky by autocrosser1

Conky by Moob 10 comments

Conky by Moob 10 comments

GTK3/4 Themes by umayanga 106 comments

Conky by iznogud78 17 comments

Conky by iznogud78 17 comments
try doing execi 360 rpm search instead.....not sure if that would work, I'm not good in low-level rpm commands. - Apr 17 2019

Conky by iznogud78 17 comments

Conky by iznogud78 17 comments

Conky by dmz51 8 comments

Conky by autocrosser1 2 comments

Conky by Moob 35 comments

Conky by Moob 35 comments

Conky by Moob 35 comments

Conky by Moob 35 comments
conky: llua_do_call: function conky_check_network_interfaces execution failed: /home/dean/.conky/lines/lines.lua:1073: attempt to perform arithmetic on local 's' (a nil value)
Not sure why a cpu test function would cause this line error.
- Sep 04 2018

Conky by Moob 35 comments
All the term output looks good:
dean@debian:~$ sensors | grep -iw core
Core 0: +53.0°C (high = +84.0°C, crit = +94.0°C)
Core 1: +51.0°C (high = +84.0°C, crit = +94.0°C)
Core 2: +47.0°C (high = +84.0°C, crit = +94.0°C)
Core 3: +58.0°C (high = +84.0°C, crit = +94.0°C)
Core 4: +51.0°C (high = +84.0°C, crit = +94.0°C)
Core 5: +45.0°C (high = +84.0°C, crit = +94.0°C)
dean@debian:~$ sensors | grep -iwE 'core.*high'
Core 0: +44.0°C (high = +84.0°C, crit = +94.0°C)
Core 1: +43.0°C (high = +84.0°C, crit = +94.0°C)
Core 2: +50.0°C (high = +84.0°C, crit = +94.0°C)
Core 3: +44.0°C (high = +84.0°C, crit = +94.0°C)
Core 4: +61.0°C (high = +84.0°C, crit = +94.0°C)
Core 5: +40.0°C (high = +84.0°C, crit = +94.0°C)
dean@debian:~$ cat /proc/cpuinfo | grep 'model name'
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
dean@debian:~$ cat /proc/cpuinfo | grep 'processor'
processor : 0
processor : 1
processor : 2
processor : 3
processor : 4
processor : 5
processor : 6
processor : 7
processor : 8
processor : 9
processor : 10
processor : 11
Also changed the "connections" box by 20px to accommodate long addresses: conky_wired_tab_connections(tabwidth+40,starty+tabheight/2+190,300,200,"Arial",10,themes.tred,themes.tgreen,themes.tblue)
- Sep 03 2018

Conky by Moob 35 comments
Term output:
dean@debian:~$ sensors | grep -iw core
Core 0: +53.0°C (high = +84.0°C, crit = +94.0°C)
Core 1: +51.0°C (high = +84.0°C, crit = +94.0°C)
Core 2: +47.0°C (high = +84.0°C, crit = +94.0°C)
Core 3: +58.0°C (high = +84.0°C, crit = +94.0°C)
Core 4: +51.0°C (high = +84.0°C, crit = +94.0°C)
Core 5: +45.0°C (high = +84.0°C, crit = +94.0°C)
dean@debian:~$ sensors | grep -iwE 'core.*high'
Core 0: +44.0°C (high = +84.0°C, crit = +94.0°C)
Core 1: +43.0°C (high = +84.0°C, crit = +94.0°C)
Core 2: +50.0°C (high = +84.0°C, crit = +94.0°C)
Core 3: +44.0°C (high = +84.0°C, crit = +94.0°C)
Core 4: +61.0°C (high = +84.0°C, crit = +94.0°C)
Core 5: +40.0°C (high = +84.0°C, crit = +94.0°C)
dean@debian:~$ cat /proc/cpuinfo | grep 'model name'
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
model name : Intel(R) Core(TM) i7-5820K CPU @ 3.30GHz
dean@debian:~$ cat /proc/cpuinfo | grep 'processor'
processor : 0
processor : 1
processor : 2
processor : 3
processor : 4
processor : 5
processor : 6
processor : 7
processor : 8
processor : 9
processor : 10
processor : 11
- Sep 03 2018

Conky by Moob 35 comments
dean@debian:~$ sensors | grep -iw core
Core 0: +51.0°C (high = +84.0°C, crit = +94.0°C)
Core 1: +60.0°C (high = +84.0°C, crit = +94.0°C)
Core 2: +54.0°C (high = +84.0°C, crit = +94.0°C)
Core 3: +58.0°C (high = +84.0°C, crit = +94.0°C)
Core 4: +58.0°C (high = +84.0°C, crit = +94.0°C)
Core 5: +49.0°C (high = +84.0°C, crit = +94.0°C)
- Sep 03 2018

Conky by Moob 35 comments
dean@debian:~$ sensors
it8792-isa-0a60
Adapter: ISA adapter
in0: +1.89 V (min = +0.00 V, max = +2.78 V)
in1: +1.49 V (min = +0.00 V, max = +2.78 V)
in2: +2.78 V (min = +0.00 V, max = +2.78 V) ALARM
+3.3V: +1.68 V (min = +0.00 V, max = +2.78 V)
in4: +1.21 V (min = +0.00 V, max = +2.78 V)
in5: +1.21 V (min = +0.00 V, max = +2.78 V)
in6: +2.78 V (min = +0.00 V, max = +2.78 V) ALARM
3VSB: +1.67 V (min = +0.00 V, max = +2.78 V)
Vbat: +1.60 V
fan1: 3835 RPM (min = 10 RPM)
fan2: 3571 RPM (min = 10 RPM)
fan3: 0 RPM (min = 0 RPM)
temp1: +48.0°C (low = +0.0°C, high = +70.0°C) sensor = Intel PECI
temp2: +36.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
temp3: +43.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
intrusion0: ALARM
coretemp-isa-0000
Adapter: ISA adapter
Package id 0: +46.0°C (high = +84.0°C, crit = +94.0°C)
Core 0: +38.0°C (high = +84.0°C, crit = +94.0°C)
Core 1: +42.0°C (high = +84.0°C, crit = +94.0°C)
Core 2: +39.0°C (high = +84.0°C, crit = +94.0°C)
Core 3: +41.0°C (high = +84.0°C, crit = +94.0°C)
Core 4: +40.0°C (high = +84.0°C, crit = +94.0°C)
Core 5: +38.0°C (high = +84.0°C, crit = +94.0°C)
it8620-isa-0a40
Adapter: ISA adapter
in0: +1.08 V (min = +0.00 V, max = +3.06 V)
in1: +2.51 V (min = +0.00 V, max = +3.06 V)
in2: +2.02 V (min = +0.00 V, max = +3.06 V)
in3: +2.03 V (min = +0.00 V, max = +3.06 V)
in4: +1.06 V (min = +0.00 V, max = +3.06 V)
in5: +1.06 V (min = +0.00 V, max = +3.06 V)
in6: +2.50 V (min = +0.00 V, max = +3.06 V)
3VSB: +3.38 V (min = +0.00 V, max = +6.12 V)
Vbat: +3.02 V
fan1: 0 RPM (min = 0 RPM)
fan2: 0 RPM (min = 0 RPM)
fan3: 0 RPM (min = 0 RPM)
fan4: 0 RPM (min = 0 RPM)
fan5: 0 RPM (min = 0 RPM)
temp1: +34.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
temp2: +42.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
temp3: +127.0°C (low = +127.0°C, high = +127.0°C) sensor = thermistor
temp4: +51.0°C
temp5: +46.0°C
temp6: +46.0°C
intrusion0: ALARM
- Sep 03 2018

Conky by Moob 35 comments

Conky by Moob 35 comments

Conky by Moob 35 comments
conky: llua_do_call: function conky_check_network_interfaces execution failed: /home/dean/.conky/lines/lines.lua:1067: attempt to perform arithmetic on local 's' (a nil value)
So, it looks like the same problem still..... - Sep 03 2018

Conky by Moob 35 comments

Conky by Moob 35 comments

Conky by Moob 35 comments
conky: llua_do_call: function conky_main execution failed: attempt to call a nil value
- Sep 03 2018

Conky by Moob 35 comments

Conky by Moob 35 comments
dean@debian:~$ ip addr
1: lo: mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp7s0: mtu 1500 qdisc pfifo_fast master bond0 state UP group default qlen 1000
link/ether 00:e0:4c:68:0f:bf brd ff:ff:ff:ff:ff:ff
3: eno1: mtu 1500 qdisc pfifo_fast master bond0 state UP group default qlen 1000
link/ether 42:be:e4:df:ca:38 brd ff:ff:ff:ff:ff:ff
4: bond0: mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether 42:be:e4:df:ca:38 brd ff:ff:ff:ff:ff:ff
- Sep 02 2018