this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

i think i'm done configuring stow now

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

This is a binary file and will not be displayed.

-5
config/.config/conky/wttr.sh
··· 1 - #!/bin/bash 2 - 3 - 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 4 - 5 - magick /home/kat/.config/conky/wttr.png -crop 460x460+0+0 -transparent black /home/kat/.config/conky/wttr.png
config/.config/conky/wttr2.png

This is a binary file and will not be displayed.

config/.local/bin/getlyr
-1
config/.local/bin/weather
··· 1 1 #!/bin/sh 2 2 # weather from wttr.in 3 - # idea from https://git.sr.ht/~whynothugo/dotfiles/tree/main/item/home/.local/bin/weather 4 3 5 4 curl https://wttr.in/New+York?F0AS
+3 -3
stow.sh
··· 8 8 9 9 echo "stowing your shit..." | gum style --foreground "#f4b8e4" --border none 10 10 11 - stow --adopt -v -R -t ~ "config" 11 + stow -v -t ~ "config" 12 12 13 - stow --adopt -v -R -t ~ "git" 13 + stow -v -t ~ "git" --adopt 14 14 15 - stow --adopt -v -R -t ~ "scripts" 15 + stow -v -t ~ "scripts" --adopt 16 16 17 17 echo "done ^_^" | gum style --foreground "#f4b8e4" --border none