dots


commit
cc8c01f
parent
f955275
author
chasinglightning
date
2025-01-28 13:45:13 -0500 EST
i think i'm done configuring stow now
25 files changed,  +1113, -12
M .stow-local-ignore
+1, -0
1@@ -1,3 +1,4 @@
2 \.git
3 \.gitignore
4 \themes
5+\misc
A config/.config/conky/.conkyrc
+1, -0
1@@ -0,0 +1 @@
2+background = false
A config/.config/conky/old-conf.conf
+1, -0
1@@ -0,0 +1 @@
2+${execi 30 /home/kat/.config/conky/test.sh}
R config/.config/conky/wttr.sh => config/.config/conky/test.sh
+0, -0
A config/.config/conky/themes/dual-clear/dark-dual-clear-0.conf
+65, -0
 1@@ -0,0 +1,65 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p0)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_left',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = true,             -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 0,               -- transparency [0 -255]
28+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} OS ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1} Processes: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
66+]]
A config/.config/conky/themes/dual-clear/dark-dual-clear-1.conf
+70, -0
 1@@ -0,0 +1,70 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p1)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_right',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 330,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = true,             -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 0,               -- transparency [0 -255]
28+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} Memory (MiB) ${font1}${alignr}${color1}${font1} CPU (%)${font}${voffset 8}  
58+${goto 24}${color1}${top_mem name 1}${color2}${top_mem mem 1} ${alignr}${color1}${top name 1}${color2}${top cpu 1}  
59+${goto 24}${color1}${top_mem name 2}${color2}${top_mem mem 2} ${alignr}${color1}${top name 2}${color2}${top cpu 2}  
60+${goto 24}${color1}${top_mem name 3}${color2}${top_mem mem 3} ${alignr}${color1}${top name 3}${color2}${top cpu 3}${voffset 8}  
61+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
62+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}  
63+${goto 24}${color1}CPU:  ${freq_g}GHz ${color2}${alignr}${cpu}% ${color1}${cpubar 4, 124}${voffset 8}  
64+${goto 24}${color1}${memgraph 16, 175}${alignr}${color1}${cpugraph 16, 175}  
65+
66+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
67+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
68+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
69+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
70+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
71+]]
A config/.config/conky/themes/dual/dark-dual-solid-0.conf
+65, -0
 1@@ -0,0 +1,65 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p0)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_left',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} OS ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1} Processes: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
66+]]
A config/.config/conky/themes/dual/dark-dual-solid-1.conf
+70, -0
 1@@ -0,0 +1,70 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p1)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_right',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 330,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} Memory (MiB) ${font1}${alignr}${color1}${font1} CPU (%)${font}${voffset 8}  
58+${goto 24}${color1}${top_mem name 1}${color2}${top_mem mem 1} ${alignr}${color1}${top name 1}${color2}${top cpu 1}  
59+${goto 24}${color1}${top_mem name 2}${color2}${top_mem mem 2} ${alignr}${color1}${top name 2}${color2}${top cpu 2}  
60+${goto 24}${color1}${top_mem name 3}${color2}${top_mem mem 3} ${alignr}${color1}${top name 3}${color2}${top cpu 3}${voffset 8}  
61+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
62+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}  
63+${goto 24}${color1}CPU:  ${freq_g}GHz ${color2}${alignr}${cpu}% ${color1}${cpubar 4, 124}${voffset 8}  
64+${goto 24}${color1}${memgraph 16, 175}${alignr}${color1}${cpugraph 16, 175}  
65+
66+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
67+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
68+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
69+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
70+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
71+]]
A config/.config/conky/themes/minimal-clear/dark-minimal-clear.conf
+80, -0
 1@@ -0,0 +1,80 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Minimal dark theme
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_right',
10+    gap_x = 24,
11+    gap_y = 24,
12+    minimum_height = 516,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = true,             -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 0,               -- transparency [0 -255]
28+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} OS ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1}${font1} Memory (MiB) ${font1}${alignr}${color1}${font1} CPU (%)${font}${voffset 8}  
66+${goto 24}${color1}${top_mem name 1}${color2}${top_mem mem 1} ${alignr}${color1}${top name 1}${color2}${top cpu 1}  
67+${goto 24}${color1}${top_mem name 2}${color2}${top_mem mem 2} ${alignr}${color1}${top name 2}${color2}${top cpu 2}  
68+${goto 24}${color1}${top_mem name 3}${color2}${top_mem mem 3} ${alignr}${color1}${top name 3}${color2}${top cpu 3}${voffset 8}  
69+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
70+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}  
71+${goto 24}${color1}CPU:  ${freq_g}GHz ${color2}${alignr}${cpu}% ${color1}${cpubar 4, 124}${voffset 8}  
72+${goto 24}${color1}${memgraph 16, 175}${alignr}${color1}${cpugraph 16, 175}  
73+
74+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
75+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
76+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
77+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
78+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
79+
80+${goto 24}${color1} Processes: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
81+]]
A config/.config/conky/themes/minimal/dark-minimal.conf
+80, -0
 1@@ -0,0 +1,80 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Minimal dark theme
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_right',
10+    gap_x = 24,
11+    gap_y = 24,
12+    minimum_height = 516,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} OS ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1}${font1} Memory (MiB) ${font1}${alignr}${color1}${font1} CPU (%)${font}${voffset 8}  
66+${goto 24}${color1}${top_mem name 1}${color2}${top_mem mem 1} ${alignr}${color1}${top name 1}${color2}${top cpu 1}  
67+${goto 24}${color1}${top_mem name 2}${color2}${top_mem mem 2} ${alignr}${color1}${top name 2}${color2}${top cpu 2}  
68+${goto 24}${color1}${top_mem name 3}${color2}${top_mem mem 3} ${alignr}${color1}${top name 3}${color2}${top cpu 3}${voffset 8}  
69+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
70+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}  
71+${goto 24}${color1}CPU:  ${freq_g}GHz ${color2}${alignr}${cpu}% ${color1}${cpubar 4, 124}${voffset 8}  
72+${goto 24}${color1}${memgraph 16, 175}${alignr}${color1}${cpugraph 16, 175}  
73+
74+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
75+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
76+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
77+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
78+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
79+
80+${goto 24}${color1} Processes: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
81+]]
A config/.config/conky/themes/splitted-clear/dark-splitted-bottom-clear.conf
+61, -0
 1@@ -0,0 +1,61 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p1)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_right',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = true,             -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 0,               -- transparency [0 -255]
28+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 32}
57+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
58+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
59+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
60+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
61+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
62+]]
A config/.config/conky/themes/splitted-clear/dark-splitted-middle-clear.conf
+64, -0
 1@@ -0,0 +1,64 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p1)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'middle_right',
10+    gap_x = 32,
11+    gap_y = 0,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = true,             -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 0,               -- transparency [0 -255]
28+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} Memory (MiB) ${font1}${alignr}${color1}${font1} CPU (%)${font}${voffset 8}  
58+${goto 24}${color1}${top_mem name 1}${color2}${top_mem mem 1} ${alignr}${color1}${top name 1}${color2}${top cpu 1}  
59+${goto 24}${color1}${top_mem name 2}${color2}${top_mem mem 2} ${alignr}${color1}${top name 2}${color2}${top cpu 2}  
60+${goto 24}${color1}${top_mem name 3}${color2}${top_mem mem 3} ${alignr}${color1}${top name 3}${color2}${top cpu 3}${voffset 8}  
61+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
62+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}  
63+${goto 24}${color1}CPU:  ${freq_g}GHz ${color2}${alignr}${cpu}% ${color1}${cpubar 4, 124}${voffset 8}  
64+${goto 24}${color1}${memgraph 16, 175}${alignr}${color1}${cpugraph 16, 175}  
65+]]
A config/.config/conky/themes/splitted-clear/dark-splitted-top-clear.conf
+65, -0
 1@@ -0,0 +1,65 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p0)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'top_right',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = true,             -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 0,               -- transparency [0 -255]
28+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} OS ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1} Processes: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
66+]]
A config/.config/conky/themes/splitted/dark-splitted-bottom.conf
+61, -0
 1@@ -0,0 +1,61 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p1)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'bottom_right',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 32}
57+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
58+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
59+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
60+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
61+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
62+]]
A config/.config/conky/themes/splitted/dark-splitted-middle.conf
+64, -0
 1@@ -0,0 +1,64 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p1)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'middle_right',
10+    gap_x = 32,
11+    gap_y = 0,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} Memory (MiB) ${font1}${alignr}${color1}${font1} CPU (%)${font}${voffset 8}  
58+${goto 24}${color1}${top_mem name 1}${color2}${top_mem mem 1} ${alignr}${color1}${top name 1}${color2}${top cpu 1}  
59+${goto 24}${color1}${top_mem name 2}${color2}${top_mem mem 2} ${alignr}${color1}${top name 2}${color2}${top cpu 2}  
60+${goto 24}${color1}${top_mem name 3}${color2}${top_mem mem 3} ${alignr}${color1}${top name 3}${color2}${top cpu 3}${voffset 8}  
61+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
62+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}  
63+${goto 24}${color1}CPU:  ${freq_g}GHz ${color2}${alignr}${cpu}% ${color1}${cpubar 4, 124}${voffset 8}  
64+${goto 24}${color1}${memgraph 16, 175}${alignr}${color1}${cpugraph 16, 175}  
65+]]
A config/.config/conky/themes/splitted/dark-splitted-top.conf
+65, -0
 1@@ -0,0 +1,65 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dual dark theme (p0)
 5+]]
 6+
 7+conky.config = {
 8+    -- window position and size
 9+    alignment = 'top_right',
10+    gap_x = 32,
11+    gap_y = 32,
12+    minimum_height = 210,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} OS ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1} Processes: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
66+]]
M config/.config/conky/themes/strip-clear/dark-strip-l-clear-1920-1080.conf
+7, -8
 1@@ -17,15 +17,15 @@ conky.config = {
 2     own_window_class = 'Conky',
 3     own_window_type = 'normal',
 4     -- Colors
 5-    font = 'RobotoMono Nerd Font:size=11',
 6-    font1 = 'RobotoMono Nerd Font:size=11',
 7-    color1 = '#f3f3f3',                        -- accent
 8-    color2 = '#c8c8c8',                        -- accent dimmed
 9+    font = 'RobotoMono Nerd Font:size=10',
10+    font1 = 'RobotoMono Nerd Font:size=10',
11+    color1 = '#c6d0f5',                        -- accent
12+    color2 = '#c6d0f5',                        -- accent dimmed
13     own_window_transparent = false,             -- transparency
14     own_window_argb_visual = true,            -- transparency
15     own_window_argb_value = 145,               -- transparency [0 -255]
16     own_window_hints = 'below,undecorated,sticky,skip_taskbar,skip_pager',                  -- if own_window true - just hints - own_window_type sets it
17-    own_window_colour = '#0f0f0f',             -- bg color [comment to full transparency]
18+    own_window_colour = '#313244',             -- bg color [comment to full transparency]
19     default_color = 'white',                   -- default colors
20     default_outline_color = 'white',           -- default colors
21     default_shade_color = 'white',             -- default colors
22@@ -55,8 +55,7 @@ conky.config = {
23 conky.text = [[
24 ${voffset 30}
25 
26-${execi 30 /home/kat/wttr-conky.sh}
27-${image /tmp/wttr.png -p 0,0 -s 460x460}
28+${image /home/kat/.config/conky/wttr.png -p 7,7 -s 460x460}
29 
30 ${voffset 30}
31 ${goto 24}${color1}${font1}System ${voffset 8}${font}  
32@@ -69,6 +68,6 @@ ${goto 24}${color1}RAM:  ${color1}$mem/$memmax ${alignr}$memperc% ${color1}${mem
33 ${goto 24}${color1}Swap: ${color1}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}${voffset 8}  
34 
35 ${goto 24}${color1}${font1}Now Playing ${voffset 8}${font}
36-${goto 24}${color1}${execi 5 (python3 /home/kat/test.py)}${font}
37+${goto 24}${color1}${execi 5 (python3 /home/kat/Documents/Scripts/lastfm.py)}${font}
38 
39 ]]
A config/.config/conky/themes/strip-clear/dark-strip-r-clear-1366-768.conf
+93, -0
 1@@ -0,0 +1,93 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dark theme for a single monitor (1366 x 768)
 5+]]
 6+
 7+conky.config = {
 8+    -- window
 9+    alignment = 'top_right',
10+    gap_x = 0,
11+    gap_y = 0,
12+    minimum_height = 768,
13+    maximum_height = 768,
14+    minimum_width = 400,
15+    maximum_width = 400,
16+    background = false,
17+    border_width = 1,
18+    own_window = true,
19+    own_window_class = 'Conky',
20+    own_window_type = 'desktop',
21+    -- Colors
22+    font = 'RobotoMono Nerd Font:size=10',
23+    font1 = 'RobotoMono Nerd Font:size=10',
24+    color1 = '#f3f3f3',                        -- accent
25+    color2 = '#c8c8c8',                        -- accent dimmed
26+    own_window_transparent = true,             -- transparency
27+    own_window_argb_visual = true,             -- transparency
28+    own_window_argb_value = 0,               -- transparency [0 -255]
29+    -- own_window_colour = '#121214',             -- bg color [comment to full transparency]
30+    default_color = 'white',                   -- default colors
31+    default_outline_color = 'white',           -- default colors
32+    default_shade_color = 'white',             -- default colors
33+    double_buffer = true,                      -- removes flickering
34+    draw_borders = false,                      -- borders (window)
35+    draw_graph_borders = true,                 -- borders (graphs)
36+    draw_outline = false,                      -- border (text)
37+    draw_shades = false,                       -- shades
38+    extra_newline = false,                     -- extra newline at the end when writing to stdout
39+    -- other
40+    update_interval = 1.0,
41+    cpu_avg_samples = 4,
42+    net_avg_samples = 4,
43+    no_buffers = true,
44+    out_to_console = false,
45+    out_to_ncurses = false,
46+    out_to_stderr = false,
47+    out_to_x = true,
48+    show_graph_range = false,
49+    show_graph_scale = false,
50+    stippled_borders = 0,
51+    uppercase = false,
52+    use_spacer = 'none',
53+    use_xft = true,
54+}
55+
56+conky.text = [[
57+${voffset 0}
58+${goto 24}${color1}${font1} System ${voffset 8}${font}  
59+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
60+${goto 24}${color1}Kernel:    ${color2}$kernel  
61+${goto 24}${color1}Uptime:    ${color2}$uptime  
62+
63+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
64+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
65+
66+${goto 24}${color1}${font1} Processes ${voffset 8}${font}  
67+${goto 24}${color1}All: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
68+
69+${goto 24}${color1}${font1} Memory ${voffset 8}${font}  
70+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
71+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}${voffset 8}  
72+${goto 24}${color1}${alignr}PID    CPU    MiB${voffset 8}  
73+${goto 24}${color1}缾  ${top_mem name 1}${color2}${alignr}${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}  
74+${goto 24}${color1}缾  ${top_mem name 2}${color2}${alignr}${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}  
75+${goto 24}${color1}缾  ${top_mem name 3}${color2}${alignr}${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}${voffset 8}  
76+${goto 24}${color1}${memgraph 16, 364}  
77+
78+${goto 24}${color1}${font1} CPU ${voffset 8}${font}  
79+${goto 24}${color1}0: ${freq_g 1}GHz ${color2}${alignr}${cpu cpu0}% ${color1}${cpubar cpu0 4, 124}  
80+${goto 24}${color1}1: ${freq_g 2}GHz ${color2}${alignr}${cpu cpu1}% ${color1}${cpubar cpu1 4, 124}  
81+${goto 24}${color1}2: ${freq_g 3}GHz ${color2}${alignr}${cpu cpu2}% ${color1}${cpubar cpu2 4, 124}  
82+${goto 24}${color1}3: ${freq_g 4}GHz ${color2}${alignr}${cpu cpu3}% ${color1}${cpubar cpu3 4, 124}${voffset 8}  
83+${goto 24}${color1}${alignr}PID    MiB    CPU${voffset 8}  
84+${goto 24}${color1}  ${top name 1}${color2}${alignr}${top pid 1} ${top mem 1} ${top cpu 1}  
85+${goto 24}${color1}  ${top name 2}${color2}${alignr}${top pid 2} ${top mem 2} ${top cpu 2}  
86+${goto 24}${color1}  ${top name 3}${color2}${alignr}${top pid 3} ${top mem 3} ${top cpu 3}${voffset 8}  
87+${goto 24}${color1}${cpugraph 16, 364}  
88+
89+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
90+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
91+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
92+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
93+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
94+]]
A config/.config/conky/themes/strip-clear/test.sh
+5, -0
1@@ -0,0 +1,5 @@
2+#!/bin/bash
3+
4+phantomjs --debug=yes --ignore-ssl-errors=true --ssl-protocol=TLSv1.1 --web-security=true /usr/local/share/phantomjs-1.9.8-linux-x86_64/examples/rasterize.js "http://wttr.in/New_York?0pqT" /home/kat/.config/conky/wttr.png
5+
6+magick /home/kat/.config/conky/wttr.png -crop 460x460+0+0 -transparent black /home/kat/.config/conky/wttr.png
A config/.config/conky/themes/strip/dark-strip-l-1920-1080.conf
+100, -0
  1@@ -0,0 +1,100 @@
  2+--[[
  3+    Author:             Arturo Aguilar Lagunas
  4+    Description:        Dark theme for a single monitor (1920 x 1080)
  5+]]
  6+
  7+conky.config = {
  8+    -- window
  9+    alignment = 'top_left',
 10+    gap_x = 0,
 11+    gap_y = 0,
 12+    minimum_height = 1080,
 13+    minimum_width = 460,
 14+    maximum_width = 460,
 15+    background = false,
 16+    border_width = 1,
 17+    own_window = true,
 18+    own_window_class = 'Conky',
 19+    own_window_type = 'desktop',
 20+    -- Colors
 21+    font = 'RobotoMono Nerd Font:size=11',
 22+    font1 = 'RobotoMono Nerd Font:size=11',
 23+    color1 = '#f3f3f3',                        -- accent
 24+    color2 = '#c8c8c8',                        -- accent dimmed
 25+    own_window_transparent = false,            -- transparency
 26+    own_window_argb_visual = true,             -- transparency
 27+    own_window_argb_value = 195,               -- transparency [0 -255]
 28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
 29+    default_color = 'white',                   -- default colors
 30+    default_outline_color = 'white',           -- default colors
 31+    default_shade_color = 'white',             -- default colors
 32+    double_buffer = true,                      -- removes flickering
 33+    draw_borders = false,                      -- borders (window)
 34+    draw_graph_borders = true,                 -- borders (graphs)
 35+    draw_outline = false,                      -- border (text)
 36+    draw_shades = false,                       -- shades
 37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
 38+    -- other
 39+    update_interval = 1.0,
 40+    cpu_avg_samples = 4,
 41+    net_avg_samples = 4,
 42+    no_buffers = true,
 43+    out_to_console = false,
 44+    out_to_ncurses = false,
 45+    out_to_stderr = false,
 46+    out_to_x = true,
 47+    show_graph_range = false,
 48+    show_graph_scale = false,
 49+    stippled_borders = 0,
 50+    uppercase = false,
 51+    use_spacer = 'none',
 52+    use_xft = true,
 53+}
 54+
 55+conky.text = [[
 56+${voffset 30}
 57+${goto 24}${color1}${font1} System ${voffset 8}${font}  
 58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
 59+${goto 24}${color1}Kernel:    ${color2}$kernel  
 60+${goto 24}${color1}Uptime:    ${color2}$uptime  
 61+
 62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
 63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
 64+
 65+${goto 24}${color1}${font1} Processes ${voffset 8}${font}  
 66+${goto 24}${color1}All: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
 67+
 68+${goto 24}${color1}${font1} Memory ${voffset 8}${font}  
 69+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
 70+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}${voffset 8}  
 71+${goto 24}${color1}${alignr}PID    CPU    MiB${voffset 8}  
 72+${goto 24}${color1}缾  ${top_mem name 1}${color2}${alignr}${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}  
 73+${goto 24}${color1}缾  ${top_mem name 2}${color2}${alignr}${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}  
 74+${goto 24}${color1}缾  ${top_mem name 3}${color2}${alignr}${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}  
 75+${goto 24}${color1}缾  ${top_mem name 4}${color2}${alignr}${top_mem pid 4} ${top_mem cpu 4} ${top_mem mem 4}  
 76+${goto 24}${color1}缾  ${top_mem name 5}${color2}${alignr}${top_mem pid 5} ${top_mem cpu 5} ${top_mem mem 5}  
 77+${goto 24}${color1}缾  ${top_mem name 6}${color2}${alignr}${top_mem pid 6} ${top_mem cpu 6} ${top_mem mem 6}  
 78+${goto 24}${color1}缾  ${top_mem name 7}${color2}${alignr}${top_mem pid 7} ${top_mem cpu 7} ${top_mem mem 7}${voffset 8}  
 79+${goto 24}${color1}${memgraph 30, 420}  
 80+
 81+${goto 24}${color1}${font1} CPU ${voffset 8}${font}  
 82+${goto 24}${color1}0: ${freq_g 1}GHz ${color2}${alignr}${cpu cpu0}% ${color1}${cpubar cpu0 4, 124}  
 83+${goto 24}${color1}1: ${freq_g 2}GHz ${color2}${alignr}${cpu cpu1}% ${color1}${cpubar cpu1 4, 124}  
 84+${goto 24}${color1}2: ${freq_g 3}GHz ${color2}${alignr}${cpu cpu2}% ${color1}${cpubar cpu2 4, 124}  
 85+${goto 24}${color1}3: ${freq_g 4}GHz ${color2}${alignr}${cpu cpu3}% ${color1}${cpubar cpu3 4, 124}${voffset 8}  
 86+${goto 24}${color1}${alignr}PID    MiB    CPU${voffset 8}  
 87+${goto 24}${color1}  ${top name 1}${color2}${alignr}${top pid 1} ${top mem 1} ${top cpu 1}  
 88+${goto 24}${color1}  ${top name 2}${color2}${alignr}${top pid 2} ${top mem 2} ${top cpu 2}  
 89+${goto 24}${color1}  ${top name 3}${color2}${alignr}${top pid 3} ${top mem 3} ${top cpu 3}  
 90+${goto 24}${color1}  ${top name 4}${color2}${alignr}${top pid 4} ${top mem 4} ${top cpu 4}  
 91+${goto 24}${color1}  ${top name 5}${color2}${alignr}${top pid 5} ${top mem 5} ${top cpu 5}  
 92+${goto 24}${color1}  ${top name 6}${color2}${alignr}${top pid 6} ${top mem 6} ${top cpu 6}  
 93+${goto 24}${color1}  ${top name 7}${color2}${alignr}${top pid 7} ${top cpu 7} ${top mem 7}${voffset 8}  
 94+${goto 24}${color1}${cpugraph 30, 420}  
 95+
 96+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
 97+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
 98+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
 99+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
100+${goto 24}${color1}${upspeedgraph wlan0 30, 200} ${alignr}${downspeedgraph wlan0 30, 200}  
101+]]
A config/.config/conky/themes/strip/dark-strip-r-1366-768.conf
+92, -0
 1@@ -0,0 +1,92 @@
 2+--[[
 3+    Author:             Arturo Aguilar Lagunas
 4+    Description:        Dark theme for a single monitor (1366 x 768)
 5+]]
 6+
 7+conky.config = {
 8+    -- window
 9+    alignment = 'top_right',
10+    gap_x = 0,
11+    gap_y = 0,
12+    minimum_height = 768,
13+    minimum_width = 400,
14+    maximum_width = 400,
15+    background = false,
16+    border_width = 1,
17+    own_window = true,
18+    own_window_class = 'Conky',
19+    own_window_type = 'desktop',
20+    -- Colors
21+    font = 'RobotoMono Nerd Font:size=10',
22+    font1 = 'RobotoMono Nerd Font:size=10',
23+    color1 = '#f3f3f3',                        -- accent
24+    color2 = '#c8c8c8',                        -- accent dimmed
25+    own_window_transparent = false,            -- transparency
26+    own_window_argb_visual = true,             -- transparency
27+    own_window_argb_value = 195,               -- transparency [0 -255]
28+    own_window_colour = '#121214',             -- bg color [comment to full transparency]
29+    default_color = 'white',                   -- default colors
30+    default_outline_color = 'white',           -- default colors
31+    default_shade_color = 'white',             -- default colors
32+    double_buffer = true,                      -- removes flickering
33+    draw_borders = false,                      -- borders (window)
34+    draw_graph_borders = true,                 -- borders (graphs)
35+    draw_outline = false,                      -- border (text)
36+    draw_shades = false,                       -- shades
37+    extra_newline = false,                     -- extra newline at the end when writing to stdout
38+    -- other
39+    update_interval = 1.0,
40+    cpu_avg_samples = 4,
41+    net_avg_samples = 4,
42+    no_buffers = true,
43+    out_to_console = false,
44+    out_to_ncurses = false,
45+    out_to_stderr = false,
46+    out_to_x = true,
47+    show_graph_range = false,
48+    show_graph_scale = false,
49+    stippled_borders = 0,
50+    uppercase = false,
51+    use_spacer = 'none',
52+    use_xft = true,
53+}
54+
55+conky.text = [[
56+${voffset 0}
57+${goto 24}${color1}${font1} System ${voffset 8}${font}  
58+${goto 24}${color1}OS:        ${color2}$sysname $nodename $machine  ${alignr}${color1}  ${color2}${battery_percent BAT1}%  
59+${goto 24}${color1}Kernel:    ${color2}$kernel  
60+${goto 24}${color1}Uptime:    ${color2}$uptime  
61+
62+${goto 24}${color1}${font1} File system ${voffset 8}${font}  
63+${goto 24}${color1}root:  ${color2}${fs_used /}/${fs_size /} ${alignr} ${fs_used_perc /}% ${color1}${fs_bar 6, 124 /}  
64+
65+${goto 24}${color1}${font1} Processes ${voffset 8}${font}  
66+${goto 24}${color1}All: ${color2}$processes${alignr}${color1}Running: ${color2}$running_processes ${color1}Threads: ${color2}$running_threads  
67+
68+${goto 24}${color1}${font1} Memory ${voffset 8}${font}  
69+${goto 24}${color1}RAM:  ${color2}$mem/$memmax ${alignr}$memperc% ${color1}${membar 4, 124}  
70+${goto 24}${color1}Swap: ${color2}$swap/$swapmax ${alignr}$swapperc% ${color1}${swapbar 4, 124}${voffset 8}  
71+${goto 24}${color1}${alignr}PID    CPU    MiB${voffset 8}  
72+${goto 24}${color1}缾  ${top_mem name 1}${color2}${alignr}${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}  
73+${goto 24}${color1}缾  ${top_mem name 2}${color2}${alignr}${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}  
74+${goto 24}${color1}缾  ${top_mem name 3}${color2}${alignr}${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}${voffset 8}  
75+${goto 24}${color1}${memgraph 16, 364}  
76+
77+${goto 24}${color1}${font1} CPU ${voffset 8}${font}  
78+${goto 24}${color1}0: ${freq_g 1}GHz ${color2}${alignr}${cpu cpu0}% ${color1}${cpubar cpu0 4, 124}  
79+${goto 24}${color1}1: ${freq_g 2}GHz ${color2}${alignr}${cpu cpu1}% ${color1}${cpubar cpu1 4, 124}  
80+${goto 24}${color1}2: ${freq_g 3}GHz ${color2}${alignr}${cpu cpu2}% ${color1}${cpubar cpu2 4, 124}  
81+${goto 24}${color1}3: ${freq_g 4}GHz ${color2}${alignr}${cpu cpu3}% ${color1}${cpubar cpu3 4, 124}${voffset 8}  
82+${goto 24}${color1}${alignr}PID    MiB    CPU${voffset 8}  
83+${goto 24}${color1}  ${top name 1}${color2}${alignr}${top pid 1} ${top mem 1} ${top cpu 1}  
84+${goto 24}${color1}  ${top name 2}${color2}${alignr}${top pid 2} ${top mem 2} ${top cpu 2}  
85+${goto 24}${color1}  ${top name 3}${color2}${alignr}${top pid 3} ${top mem 3} ${top cpu 3}${voffset 8}  
86+${goto 24}${color1}${cpugraph 16, 364}  
87+
88+${goto 24}${color1}${font1}說 Network: ${color2}${wireless_bitrate wlan0}${alignr}${color2}${wireless_link_qual_perc wlan0}% ${color1}${wireless_link_bar 4,124 wlan0}${voffset 8}${font}  
89+${goto 24}${color1}SSID: ${color2}${wireless_essid wlan0}${alignr}${color1}IP: ${color2}${addr wlan0}  
90+${goto 24}${color1}Total Up: ${color2}${totalup wlan0} ${alignr}${color1}Total Down: ${color2}${totaldown wlan0}  
91+${goto 24}${color1}Speed Up: ${color2}${upspeed wlan0} ${alignr}${color1}Speed Down: ${color2}${downspeed wlan0}${voffset 8}  
92+${goto 24}${color1}${upspeedgraph wlan0 16, 175} ${alignr}${downspeedgraph wlan0 16, 175}  
93+]]
A config/.config/conky/wttr.png
+0, -0
A config/.config/conky/wttr2.png
+0, -0
M config/.local/bin/getlyr
+0, -1
1@@ -1,5 +1,4 @@
2 #!/bin/sh
3 # weather from wttr.in
4-# idea from https://git.sr.ht/~whynothugo/dotfiles/tree/main/item/home/.local/bin/weather
5 
6 curl https://wttr.in/New+York?F0AS
M stow.sh
+3, -3
 1@@ -8,10 +8,10 @@ echo "git pull complete!" | gum style --foreground "#f4b8e4" --border none
 2 
 3 echo "stowing your shit..." | gum style --foreground "#f4b8e4" --border none
 4 
 5-stow --adopt -v -R -t ~ "config"
 6+stow -v -t ~ "config"
 7 
 8-stow --adopt -v -R -t ~ "git"
 9+stow -v -t ~ "git" --adopt 
10 
11-stow --adopt -v -R -t ~ "scripts"
12+stow -v -t ~ "scripts" --adopt 
13 
14 echo "done ^_^" | gum style --foreground "#f4b8e4" --border none