Moves conky to LEGACY

This commit is contained in:
Jonathan Hodgson 2019-07-30 15:12:16 +01:00
parent 5095b12c47
commit dc296d2a46
13 changed files with 0 additions and 0 deletions

4
LEGACY/conky/.themepacks Normal file
View file

@ -0,0 +1,4 @@
default-themes-1.1.cmtp.7z
default-themes-1.2.cmtp.7z
default-themes-2.1.cmtp.7z
default-themes-2.1.cmtp.7z

View file

@ -0,0 +1,54 @@
background yes
update_interval 0.2
double_buffer yes
no_buffers yes
text_buffer_size 2048
gap_x 10
gap_y 10
own_window yes
own_window_type override
own_window_class Conky
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_colour 000000
#own_window_argb_visual yes
#own_window_argb_value 128
border_inner_margin 0
border_outer_margin 0
alignment top_left
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
override_utf8_locale yes
use_xft yes
xftfont caviar dreams:size=10
xftalpha 0.5
uppercase no
# Defining colors
default_color FFFFFF
# Shades of Gray
color1 DDDDDD
color2 AAAAAA
color3 888888
# Blue
color4 2f519a
# Green
color5 77B753
minimum_size 250 500
own_window_argb_value 0
own_window_argb_visual no
TEXT
${font GE Inspira:pixelsize=30}${execpi 60 python ~/.conky/BibleVerse/bibleGateway.py}
${color 2f519a}${execpi 60 python ~/.conky/BibleVerse/reference.py}

View file

@ -0,0 +1,11 @@
__author__ = 'jonathan'
import urllib.request
import json
import html
import textwrap
f = urllib.request.urlopen("http://www.biblegateway.com/votd/get/?format=json&version=ESV")
content = json.loads(f.read().decode("utf-8"))
print(textwrap.fill(html.unescape(content['votd']['text']),30))

View file

@ -0,0 +1,8 @@
__author__ = 'jonathan'
import urllib.request
import json
f = urllib.request.urlopen("http://www.biblegateway.com/votd/get/?format=json&version=ESV")
content = json.loads(f.read().decode("utf-8"))
print(content['votd']['reference'])

View file

@ -0,0 +1,42 @@
use_xft yes
xftfont 123:size=8
xftalpha 0.1
update_interval 0.5
total_run_times 0
own_window yes
own_window_type override
own_window_class Conky
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_colour 000000
#own_window_argb_visual yes
#own_window_argb_value 128
background yes
double_buffer yes
maximum_width 500
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
default_color white
default_shade_color red
default_outline_color green
alignment top_right
gap_x 0
gap_y 10
no_buffers yes
uppercase no
cpu_avg_samples 2
net_avg_samples 1
override_utf8_locale yes
own_window_argb_value 0
own_window_argb_visual no
minimum_size 0 0
TEXT
${color EAEAEA}${font GE Inspira:pixelsize=120}${time %H:%M}${color 2f519a}${time :%S}${font}
${color EAEAEA}${font GE Inspira:pixelsize=58}${time %A}${font GE Inspira:pixelsize=42}${color 2f519a}${time %d}${font GE Inspira:pixelsize=22}${color EAEAEA}${time %B} ${time %Y}

Binary file not shown.

View file

@ -0,0 +1,60 @@
# -- Conky settings -- #
background no
update_interval 2
cpu_avg_samples 2
net_avg_samples 2
override_utf8_locale yes
double_buffer yes
no_buffers yes
text_buffer_size 2048
imlib_cache_size 0
# -- Window specifications -- #
own_window yes
own_window_type override
own_window_class Conky
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_colour 000000
#own_window_argb_visual yes
#own_window_argb_value 128
border_inner_margin 0
border_outer_margin 0
minimum_size 7266 748
# -- Graphics settings -- #
draw_shades no
draw_outline no
draw_borders no
draw_graph_borders no
# -- Text settings -- #
use_xft yes
xftfont Santana:size=8
xftalpha 0.8
uppercase no
default_color FFFFFF
# -- Lua load -- #
lua_load main.lua
lua_draw_hook_pre main
lua_startup_hook setup
alignment top_left
gap_x 280
gap_y 80
own_window_argb_value 0
own_window_argb_visual yes
own_window_colour 000000
TEXT
#${offset 636}${voffset 223}${font Roboto:size=12}${time %l:%M %P }
${offset 630}${voffset 228}${font Roboto:size=35}Arch

View file

@ -0,0 +1 @@
./face.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,17 @@
# dimenstions
WIDTH = 1366;
HEIGHT = 748;
# network
NETWORK = wlo1;
# cpu
NO_OF_CORES = 8;
# color scheme the values are DARK or WHITE
COLOR = WHITE;
# gmail account
MAIL = '''MAIL''':'''PASSWARD''' https://mail.google.com/mail/feed/atom/unread;

View file

@ -0,0 +1,8 @@
sleep 5s
killall conky
cd "/home/jonathan/.conky/BibleVerse"
conky -c "/home/jonathan/.conky/BibleVerse/bibleGateway" &
cd "/home/jonathan/.conky/MyBlue"
conky -c "/home/jonathan/.conky/MyBlue/MyBlue" &
cd "/home/jonathan/.conky/Octupi_Arch"
conky -c "/home/jonathan/.conky/Octupi_Arch/co_main" &