mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-23 19:40:24 +10:00
Cleaning up conky configs.
This commit is contained in:
@@ -1,130 +0,0 @@
|
|||||||
--[[
|
|
||||||
##################################
|
|
||||||
## dracula-01.conkyrc (Qtile) ##
|
|
||||||
##################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#282a36', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Dracula)
|
|
||||||
color0 = '#bd93f9',
|
|
||||||
color1 = '#f8f8f2',
|
|
||||||
color2 = '#8be9fd',
|
|
||||||
color2 = '#8be9fd',
|
|
||||||
color3 = '#50fa7b',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
#######################################
|
|
||||||
## gruvbox-dark-01.conkyrc (Qtile) ##
|
|
||||||
#######################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#282828', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Gruvbox Dark)
|
|
||||||
color0 = '#b16286',
|
|
||||||
color1 = '#ebdbb2',
|
|
||||||
color2 = '#458588',
|
|
||||||
color3 = '#b8bb26',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
######################################
|
|
||||||
## monokai-pro-01.conkyrc (Qtile) ##
|
|
||||||
######################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#2D2A2E', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Monokai Pro)
|
|
||||||
color0 = '#AB9DF2',
|
|
||||||
color1 = '#FCFCFA',
|
|
||||||
color2 = '#78DCE8',
|
|
||||||
color3 = '#A9DC76',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
###############################
|
|
||||||
## nord-01.conkyrc (Qtile) ##
|
|
||||||
###############################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#2E3440', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Nord)
|
|
||||||
color0 = '#B48EAD',
|
|
||||||
color1 = '#D8DEE9',
|
|
||||||
color2 = '#88C0D0',
|
|
||||||
color3 = '#EBCB8B',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
#######################################
|
|
||||||
## oceanic-next-01.conkyrc (Qtile) ##
|
|
||||||
#######################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#1b2b34', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Oceanic Next)
|
|
||||||
color0 = '#c594c5',
|
|
||||||
color1 = '#d8dee9',
|
|
||||||
color2 = '#6699cc',
|
|
||||||
color3 = '#99c794',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
#########################################
|
|
||||||
## tomorrow-night-01.conkyrc (Qtile) ##
|
|
||||||
#########################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#292d3e', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Palenight)
|
|
||||||
color0 = '#c792ea',
|
|
||||||
color1 = '#d0d0d0',
|
|
||||||
color2 = '#82aaff',
|
|
||||||
color3 = '#ffcb6b',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
#########################################
|
|
||||||
## solarized-dark-01.conkyrc (Qtile) ##
|
|
||||||
#########################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#002b36', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Solarized Dark)
|
|
||||||
color0 = '#2aa198',
|
|
||||||
color1 = '#fdf6e3',
|
|
||||||
color2 = '#268bd2',
|
|
||||||
color3 = '#d33682',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
##########################################
|
|
||||||
## solarized-light-01.conkyrc (Qtile) ##
|
|
||||||
##########################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#fdf6e3', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Solarized Light)
|
|
||||||
color0 = '#2aa198',
|
|
||||||
color1 = '#657b83',
|
|
||||||
color2 = '#268bd2',
|
|
||||||
color3 = '#d33682',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
@@ -1,129 +0,0 @@
|
|||||||
--[[
|
|
||||||
#########################################
|
|
||||||
## tomorrow-night-01.conkyrc (Qtile) ##
|
|
||||||
#########################################
|
|
||||||
]]
|
|
||||||
|
|
||||||
conky.config = {
|
|
||||||
|
|
||||||
--Various settings
|
|
||||||
background = true, -- forked to background
|
|
||||||
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
|
||||||
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
|
||||||
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
|
||||||
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
|
||||||
net_avg_samples = 2, -- The number of samples to average for net data
|
|
||||||
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
|
||||||
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
|
||||||
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
|
||||||
update_interval = 1, -- update interval
|
|
||||||
imlib_cache_size = 0, -- disable image cache to get a new spotify cover per song
|
|
||||||
|
|
||||||
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
|
||||||
--alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
--gap_x = 3540, -- pixels between right or left border
|
|
||||||
--gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Placement (For SINGLE monitor users!)
|
|
||||||
alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
|
||||||
gap_x = 50, -- pixels between right or left border
|
|
||||||
gap_y = 70, -- pixels between bottom or left border
|
|
||||||
|
|
||||||
-- Size
|
|
||||||
minimum_height = 200, -- minimum height of window
|
|
||||||
minimum_width = 260, -- minimum width of window
|
|
||||||
maximum_width = 260, -- maximum width of window
|
|
||||||
|
|
||||||
--Graphical
|
|
||||||
border_inner_margin = 5, -- margin between border and text
|
|
||||||
border_outer_margin = 5, -- margin between border and edge of window
|
|
||||||
border_width = 0, -- border width in pixels
|
|
||||||
default_bar_width = 260, -- default is 0 - full width
|
|
||||||
default_bar_height = 10, -- default is 6
|
|
||||||
default_gauge_height = 25, -- default is 25
|
|
||||||
default_gauge_width =40, -- default is 40
|
|
||||||
default_graph_height = 40, -- default is 25
|
|
||||||
default_graph_width = 153, -- default is 0 - full width
|
|
||||||
default_shade_color = '#000000', -- default shading colour
|
|
||||||
default_outline_color = '#000000', -- default outline colour
|
|
||||||
draw_borders = false, -- draw borders around text
|
|
||||||
draw_graph_borders = true, -- draw borders around graphs
|
|
||||||
draw_shades = false, -- draw shades
|
|
||||||
draw_outline = false, -- draw outline
|
|
||||||
stippled_borders = 0, -- dashing the border
|
|
||||||
|
|
||||||
--Textual
|
|
||||||
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
|
||||||
font = 'Source Code Pro:bold:size=10', -- the default font used
|
|
||||||
font2 = 'Raleway:bold:size=30', -- font for the time
|
|
||||||
font3 = 'Ubuntu:size=14', -- font for the date
|
|
||||||
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
|
||||||
max_text_width = 0, -- 0 will make sure line does not get broken if width too smal
|
|
||||||
max_user_text = 16384, -- max text in conky default 16384
|
|
||||||
override_utf8_locale = true, -- force UTF8 requires xft
|
|
||||||
short_units = true, -- shorten units from KiB to k
|
|
||||||
top_name_width = 21, -- width for $top name value default 15
|
|
||||||
top_name_verbose = false, -- If true, top name shows the full command line of each process - Default value is false.
|
|
||||||
uppercase = false, -- uppercase or not
|
|
||||||
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
|
||||||
use_xft = true, -- xft font - anti-aliased font
|
|
||||||
xftalpha = 1, -- alpha of the xft font - between 0-1
|
|
||||||
|
|
||||||
--Windows
|
|
||||||
own_window = true, -- create your own window to draw
|
|
||||||
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
|
||||||
own_window_argb_visual = true, -- use ARGB - composite manager required
|
|
||||||
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
|
||||||
own_window_colour = '#1d1f21', -- set colour if own_window_transparent no
|
|
||||||
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
|
||||||
own_window_title = 'xmonad_conky', -- set the name manually
|
|
||||||
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
|
||||||
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
|
||||||
|
|
||||||
--Colors (Tomorrow Night)
|
|
||||||
color0 = '#b294bb',
|
|
||||||
color1 = '#c5c8c6',
|
|
||||||
color2 = '#81a2be',
|
|
||||||
color3 = '#b5bd68',
|
|
||||||
};
|
|
||||||
|
|
||||||
conky.text = [[
|
|
||||||
${alignc}${color0}${font2}${time %H:%M}${font}
|
|
||||||
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
|
||||||
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
|
||||||
${color2}${goto 12}${cpubar 8,254}
|
|
||||||
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
|
||||||
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
|
||||||
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
|
||||||
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
|
||||||
${color2}${goto 12}${membar 8,254}${color}
|
|
||||||
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
|
||||||
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
|
||||||
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
|
||||||
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
|
||||||
${color1}[S]+b${alignr}${color2}open browser${color}
|
|
||||||
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
|
||||||
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
|
||||||
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
|
||||||
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
|
||||||
${color1}[S]+[1-9]${alignr}${color2}switch workspace${color}
|
|
||||||
${color1}[S]+[SHIFT]+[1-9]${alignr}${color2}send window${color}
|
|
||||||
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+e, e${alignr}${color2}launch emacs${color}
|
|
||||||
${color1}[S]+e, b${alignr}${color2}ibuffer${color}
|
|
||||||
${color1}[S]+e, d${alignr}${color2}dired${color}
|
|
||||||
${color1}[S]+e, s${alignr}${color2}eshell${color}
|
|
||||||
${color1}[S]+e, v${alignr}${color2}vterm${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+p, h${alignr}${color2}dm-hub${color}
|
|
||||||
${color1}[S]+p, b${alignr}${color2}dm-setbg${color}
|
|
||||||
${color1}[S]+p, m${alignr}${color2}dm-man${color}
|
|
||||||
${color1}[S]+p, o${alignr}${color2}dm-bookman${color}
|
|
||||||
${color1}[S]+p, s${alignr}${color2}dm-websearch${color}
|
|
||||||
${color1}${hr}${color}
|
|
||||||
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
|
||||||
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
|
||||||
]];
|
|
||||||
2
.config/conky/qtile/01/DoomOne.conf → .config/conky/qtile/01/doom-one.conf
Executable file → Normal file
2
.config/conky/qtile/01/DoomOne.conf → .config/conky/qtile/01/doom-one.conf
Executable file → Normal file
@@ -1,6 +1,6 @@
|
|||||||
--[[
|
--[[
|
||||||
###################################
|
###################################
|
||||||
## conky-qtile-01 ##
|
## qtile/01/doom-one.conf ##
|
||||||
###################################
|
###################################
|
||||||
]]
|
]]
|
||||||
|
|
||||||
123
.config/conky/qtile/01/dracula.conf
Normal file
123
.config/conky/qtile/01/dracula.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/dracula.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#282a36', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Dracula
|
||||||
|
color0 = '#bd93f9',
|
||||||
|
color1 = '#f8f8f2',
|
||||||
|
color2 = '#8be9fd',
|
||||||
|
color3 = '#50fa7b',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/gruvbox-dark.conf
Normal file
123
.config/conky/qtile/01/gruvbox-dark.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/gruvbox-dark.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#282828', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Gruvbox Dark
|
||||||
|
color0 = '#b16286',
|
||||||
|
color1 = '#ebdbb2',
|
||||||
|
color2 = '#458588',
|
||||||
|
color3 = '#b8bb26',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/monokai-pro.conf
Normal file
123
.config/conky/qtile/01/monokai-pro.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/monokai-pro.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#2d2a2e', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Monokai Pro
|
||||||
|
color0 = '#ab9df2',
|
||||||
|
color1 = '#fcfcfa',
|
||||||
|
color2 = '#78dce8',
|
||||||
|
color3 = '#a9dc76',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/nord.conf
Normal file
123
.config/conky/qtile/01/nord.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/nord.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#2e3440', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Nord
|
||||||
|
color0 = '#b48ead',
|
||||||
|
color1 = '#d8dee9',
|
||||||
|
color2 = '#88c0d0',
|
||||||
|
color3 = '#ebcb8b',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/oceanic-next.conf
Normal file
123
.config/conky/qtile/01/oceanic-next.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/oceanic-next.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#1b2b34', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Oceanic Next
|
||||||
|
color0 = '#c594c5',
|
||||||
|
color1 = '#d8dee9',
|
||||||
|
color2 = '#6699cc',
|
||||||
|
color3 = '#99c794',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/palenight.conf
Normal file
123
.config/conky/qtile/01/palenight.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/palenight.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#292d3e', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Palenight
|
||||||
|
color0 = '#c792ea',
|
||||||
|
color1 = '#d0d0d0',
|
||||||
|
color2 = '#82aaff',
|
||||||
|
color3 = '#ffcb6b',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/solarized-dark.conf
Normal file
123
.config/conky/qtile/01/solarized-dark.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/solarized-dark.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#002b36', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Solarized Dark
|
||||||
|
color0 = '#2aa198',
|
||||||
|
color1 = '#fdf6e3',
|
||||||
|
color2 = '#268bd2',
|
||||||
|
color3 = '#d33682',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/solarized-light.conf
Normal file
123
.config/conky/qtile/01/solarized-light.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/solarized-light.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#fdf6e3', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Solarized Light
|
||||||
|
color0 = '#2aa198',
|
||||||
|
color1 = '#657b83',
|
||||||
|
color2 = '#268bd2',
|
||||||
|
color3 = '#d33682',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
123
.config/conky/qtile/01/tomorrow-night.conf
Normal file
123
.config/conky/qtile/01/tomorrow-night.conf
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
--[[
|
||||||
|
###################################
|
||||||
|
## qtile/01/tomorrow-night.conf ##
|
||||||
|
###################################
|
||||||
|
]]
|
||||||
|
|
||||||
|
conky.config = {
|
||||||
|
|
||||||
|
--Various settings
|
||||||
|
background = true, -- forked to background
|
||||||
|
cpu_avg_samples = 2, -- The number of samples to average for CPU monitoring.
|
||||||
|
diskio_avg_samples = 10, -- The number of samples to average for disk I/O monitoring.
|
||||||
|
double_buffer = true, -- Use the Xdbe extension? (eliminates flicker)
|
||||||
|
if_up_strictness = 'address', -- how strict if testing interface is up - up, link or address
|
||||||
|
net_avg_samples = 2, -- The number of samples to average for net data
|
||||||
|
no_buffers = true, -- Subtract (file system) buffers from used memory?
|
||||||
|
temperature_unit = 'fahrenheit', -- fahrenheit or celsius
|
||||||
|
text_buffer_size = 2048, -- size of buffer for display of content of large variables - default 256
|
||||||
|
update_interval = 1, -- update interval
|
||||||
|
|
||||||
|
-- Placement (Conky on MIDDLE of THREE monitors at 1920x1080)
|
||||||
|
alignment = 'top_left', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
gap_x = 1620, -- pixels between right or left border
|
||||||
|
gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Placement (For SINGLE monitor users!)
|
||||||
|
--alignment = 'top_right', -- top_left,top_middle,top_right,bottom_left,bottom_middle,bottom_right,
|
||||||
|
--gap_x = 50, -- pixels between right or left border
|
||||||
|
--gap_y = 70, -- pixels between bottom or left border
|
||||||
|
|
||||||
|
-- Size
|
||||||
|
minimum_height = 200, -- minimum height of window
|
||||||
|
minimum_width = 260, -- minimum width of window
|
||||||
|
maximum_width = 260, -- maximum width of window
|
||||||
|
|
||||||
|
--Graphical
|
||||||
|
border_inner_margin = 5, -- margin between border and text
|
||||||
|
border_outer_margin = 5, -- margin between border and edge of window
|
||||||
|
border_width = 0, -- border width in pixels
|
||||||
|
default_bar_width = 260, -- default is 0 - full width
|
||||||
|
default_bar_height = 10, -- default is 6
|
||||||
|
default_gauge_height = 25, -- default is 25
|
||||||
|
default_gauge_width =40, -- default is 40
|
||||||
|
default_graph_height = 40, -- default is 25
|
||||||
|
default_graph_width = 153, -- default is 0 - full width
|
||||||
|
default_shade_color = '#000000', -- default shading colour
|
||||||
|
default_outline_color = '#000000', -- default outline colour
|
||||||
|
draw_borders = false, -- draw borders around text
|
||||||
|
draw_graph_borders = true, -- draw borders around graphs
|
||||||
|
draw_shades = false, -- draw shades
|
||||||
|
draw_outline = false, -- draw outline
|
||||||
|
stippled_borders = 0, -- dashing the border
|
||||||
|
|
||||||
|
--Textual
|
||||||
|
format_human_readable = true, -- KiB, MiB rather then number of bytes
|
||||||
|
font = 'Source Code Pro:bold:size=10', -- the default font used
|
||||||
|
font2 = 'Raleway:bold:size=30', -- font for the time
|
||||||
|
font3 = 'Ubuntu:size=14', -- font for the date
|
||||||
|
font4 = 'Raleway:bold:size=9', -- font for the keybindings heading
|
||||||
|
max_text_width = 0, -- 0 will make sure line does not get broken if width too small
|
||||||
|
max_user_text = 16384, -- max text in conky default 16384
|
||||||
|
override_utf8_locale = true, -- force UTF8 requires xft
|
||||||
|
short_units = true, -- shorten units from KiB to k
|
||||||
|
top_name_width = 21, -- width for $top name value default 15
|
||||||
|
top_name_verbose = false, -- If true, top name shows the full command line of each process.
|
||||||
|
uppercase = false, -- uppercase or not
|
||||||
|
use_spacer = 'none', -- adds spaces around certain objects to align - default none
|
||||||
|
use_xft = true, -- xft font - anti-aliased font
|
||||||
|
xftalpha = 1, -- alpha of the xft font - between 0-1
|
||||||
|
|
||||||
|
--Windows
|
||||||
|
own_window = true, -- create your own window to draw
|
||||||
|
own_window_argb_value = 255, -- real transparency - composite manager required 0-255
|
||||||
|
own_window_argb_visual = true, -- use ARGB - composite manager required
|
||||||
|
own_window_class = 'Conky', -- manually set the WM_CLASS name for use with xprop
|
||||||
|
own_window_colour = '#1d1f21', -- set colour if own_window_transparent no
|
||||||
|
own_window_transparent = false, -- if own_window_argb_visual is true sets background opacity 0%
|
||||||
|
own_window_title = 'conky-qtile-01', -- set the name manually
|
||||||
|
own_window_type = 'override', -- if own_window true options are: normal/override/dock/desktop/panel
|
||||||
|
own_window_hints = 'undecorated,below,above,sticky,skip_taskbar,skip_pager', -- if own_window true - just hints - own_window_type sets it
|
||||||
|
|
||||||
|
--COLOR CODE BEGIN--
|
||||||
|
--Colorscheme: Tomorrow Night
|
||||||
|
color0 = '#b294bb',
|
||||||
|
color1 = '#c5c8c6',
|
||||||
|
color2 = '#81a2be',
|
||||||
|
color3 = '#b5bd68',
|
||||||
|
--COLOR CODE END--
|
||||||
|
};
|
||||||
|
|
||||||
|
conky.text = [[
|
||||||
|
${alignc}${color0}${font2}${time %H:%M}${font}
|
||||||
|
${voffset 6}${alignc}${color0}${font3}${time %b %d, %Y}${font}${color}
|
||||||
|
${voffset 18}${goto 12}${color3}CPU${goto 50}$cpu%
|
||||||
|
${color2}${goto 12}${cpubar 8,254}
|
||||||
|
${voffset 5}${goto 12}$font${color1}${top name 1}$alignr$color${top cpu 1}%
|
||||||
|
${goto 12}${color1}${top name 2}$alignr$color${top cpu 2}%
|
||||||
|
${goto 12}${color1}${top name 3}$alignr$color${top cpu 3}%
|
||||||
|
${voffset 14}${goto 12}${color3}RAM${goto 50}$mem/$memmax
|
||||||
|
${color2}${goto 12}${membar 8,254}${color}
|
||||||
|
${goto 12}${voffset 5}${color1}${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||||
|
${goto 12}${color1}${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||||
|
${goto 12}${color1}${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||||
|
${voffset 18}${color1}${alignc}${font4}QTILE KEYBINDINGS${font}${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[RET]${alignr}${color2}open terminal${color}
|
||||||
|
${color1}[S]+w${alignr}${color2}open browser${color}
|
||||||
|
${color1}[S]+[SHIFT]+[RET]${alignr}${color2}run prompt${color}
|
||||||
|
${color1}[S]+[SHIFT]+c${alignr}${color2}close window${color}
|
||||||
|
${color1}[S]+j/k${alignr}${color2}move win focus${color}
|
||||||
|
${color1}[S]+[SHIFT]+hjkl${alignr}${color2}move window${color}
|
||||||
|
${color1}[S]+[0-9]${alignr}${color2}switch workspace${color}
|
||||||
|
${color1}[S]+[SHIFT]+[0-9]${alignr}${color2}send window${color}
|
||||||
|
${color1}[S]+[=]/[-]${alignr}${color2}shrink/expand${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+e, e${alignr}${color2}emacs dashboard${color}
|
||||||
|
${color1}[S]+e, KEY${alignr}${color2}emacs programs${color}
|
||||||
|
${color1}[S]+p, h${alignr}${color2}lists all dmscripts${color}
|
||||||
|
${color1}[S]+p, KEY${alignr}${color2}dmscripts programs${color}
|
||||||
|
${color1}${hr}${color}
|
||||||
|
${color1}[S]+[SHIFT]+r${alignr}${color2}restart qtile${color}
|
||||||
|
${color1}[S]+[SHIFT]+q${alignr}${color2}quit qtile${color}
|
||||||
|
]];
|
||||||
@@ -30,3 +30,4 @@
|
|||||||
'(org-level-5 ((t (:inherit outline-5 :height 1.3))))
|
'(org-level-5 ((t (:inherit outline-5 :height 1.3))))
|
||||||
'(org-level-6 ((t (:inherit outline-5 :height 1.2))))
|
'(org-level-6 ((t (:inherit outline-5 :height 1.2))))
|
||||||
'(org-level-7 ((t (:inherit outline-5 :height 1.1)))))
|
'(org-level-7 ((t (:inherit outline-5 :height 1.1)))))
|
||||||
|
(put 'downcase-region 'disabled nil)
|
||||||
|
|||||||
Reference in New Issue
Block a user