diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc index 4582572..003daa3 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc @@ -1,139 +1,142 @@ -# For commands above TEXT check: -# http://conky.sourceforge.net/config_settings.html -# -# For commands available below TEXT check: -# http://conky.sourceforge.net/variables.html +conky.config = { +-- For commands above TEXT check: +-- http://conky.sourceforge.net/config_settings.html -# Bunsen Labs Conky help threads -# http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 +-- For commands available below TEXT check: +-- http://conky.sourceforge.net/variables.html -# beta tested by: smacz -# Enjoy! :) +-- Bunsen Labs Conky help threads +-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 -# pkill -xf "conky -c $HOME/.config/conky/CB-Left.conkyrc" & -### Begin Window Settings ##################### -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Bunsen Labs CB Left Conky +-- beta tested by: smacz +-- Enjoy! :) -### ARGB can be used for real transparency -### NOTE that a composite manager is required for real transparency. -### This option will not work as desired (in most cases) in conjunction with -### own_window_type normal -# own_window_argb_visual yes # Options: yes or no +-- pkill -xf "conky -c $HOME/.config/conky/CB-Left.conkyrc" & +--## Begin Window Settings ##################### + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Bunsen Labs CB Left Conky', -### When ARGB visuals are enabled, this use this to modify the alpha value -### Use: own_window_type normal -### Use: own_window_transparent no -### Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. -# own_window_argb_value 150 +--## ARGB can be used for real transparency +--## NOTE that a composite manager is required for real transparency. +--## This option will not work as desired (in most cases) in conjunction with +--## own_window_type normal +-- own_window_argb_visual yes # Options: yes or no -minimum_size 200 0 ### width | height -maximum_width 200 +--## When ARGB visuals are enabled, this use this to modify the alpha value +--## Use: own_window_type normal +--## Use: own_window_transparent no +--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. +-- own_window_argb_value 150 -gap_x 20 ### l|r -gap_y 45 ### u|d + minimum_width = 200, minimum_height = 0,--## width | height + maximum_width = 200, -alignment tl -####################### End Window Settings ### -### Font Settings ############################# -# Use Xft (anti-aliased font and stuff) -use_xft yes -#xftfont Liberation Mono:bold:size=10 -#xftfont Liberation Sans:size=10 -xftfont Sans-serif:size=10 + gap_x = 20,--## l|r + gap_y = 45,--## u|d -# Alpha of Xft font. Must be a value at or between 1 and 0 -xftalpha 1 -# Force UTF8? requires XFT ### -override_utf8_locale yes + alignment = 'top_left', +--###################### End Window Settings ### +--## Font Settings ############################# +-- Use Xft (anti-aliased font and stuff) + use_xft = true, +--xftfont Liberation Mono:bold:size=10 +--xftfont Liberation Sans:size=10 + font = 'Sans-serif:size=10', -uppercase no -######################### End Font Settings ### -### Color Settings ############################ -draw_shades no #yes -default_shade_color 000000 +-- Alpha of Xft font. Must be a value at or between 1 and 0 + xftalpha = 1, +-- Force UTF8? requires XFT ### + override_utf8_locale = true, -draw_outline no # amplifies text if yes -default_outline_color 000000 + uppercase = false, +--######################## End Font Settings ### +--## Color Settings ############################ + draw_shades = false,--yes + default_shade_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -default_color C0C0C0 # Silver -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -color2 D8BFD8 # Thistle -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed -####################### End Colour Settings ### -### Borders Section ########################### -draw_borders no -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -draw_graph_borders no -#default_graph_size 15 40 -####################### End Borders Section ### -### Miscellaneous Section ##################### -# Boolean value, if true, Conky will be forked to background when started. -background yes + draw_outline = false,-- amplifies text if yes + default_outline_color = '#000000', -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey + default_color = '#C0C0C0',-- Silver + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray + color2 = '#D8BFD8',-- Thistle + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed +--###################### End Colour Settings ### +--## Borders Section ########################### + draw_borders = false, +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = false, +--default_graph_size 15 40 +--###################### End Borders Section ### +--## Miscellaneous Section ##################### +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Default and Minimum size is 256 - needs more for single commands that -# "call" a lot of text IE: bash scripts -#text_buffer_size 6144 +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Default and Minimum size is 256 - needs more for single commands that +-- "call" a lot of text IE: bash scripts +--text_buffer_size 6144 -# change GiB to G and MiB to M -short_units yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Like it says, ot pads the decimals on % values -# doesn't seem to work since v1.7.1 -pad_percents 2 +-- change GiB to G and MiB to M + short_units = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Like it says, ot pads the decimals on % values +-- doesn't seem to work since v1.7.1 + pad_percents = 2, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Maximum size of user text buffer, i.e. layout below TEXT line in config file -# (default is 16384 bytes) -# max_user_text 16384 +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -# Desired output unit of all objects displaying a temperature. Parameters are -# either "fahrenheit" or "celsius". The default unit is degree Celsius. -# temperature_unit Fahrenheit +-- Maximum size of user text buffer, i.e. layout below TEXT line in config file +-- (default is 16384 bytes) +-- max_user_text 16384 -################# End Miscellaneous Section ### +-- Desired output unit of all objects displaying a temperature. Parameters are +-- either "fahrenheit" or "celsius". The default unit is degree Celsius. +-- temperature_unit Fahrenheit -update_interval 1 +--################ End Miscellaneous Section ### -TEXT + update_interval = 1, + +}; + +conky.text = [[ ${alignr}S Y S T E M I N F O ${membar 0} Host:${alignr}${nodename} @@ -161,3 +164,4 @@ Super + l${alignr}Lock Screen Super + v${alignr}Volume Control Super + x${alignr}Logout PrtSc${alignr}Screenshot +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc index aba3e7a..f87efa1 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc @@ -1,139 +1,142 @@ -# For commands above TEXT check: -# http://conky.sourceforge.net/config_settings.html -# -# For commands available below TEXT check: -# http://conky.sourceforge.net/variables.html +conky.config = { +-- For commands above TEXT check: +-- http://conky.sourceforge.net/config_settings.html -# Bunsen Labs Conky help threads -# http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 +-- For commands available below TEXT check: +-- http://conky.sourceforge.net/variables.html -# beta tested by: smacz -# Enjoy! :) +-- Bunsen Labs Conky help threads +-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 -# pkill -xf "conky -c $HOME/.config/conky/CB-Right.conkyrc" & -### Begin Window Settings ##################### -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Bunsen Labs CB Right Conky +-- beta tested by: smacz +-- Enjoy! :) -### ARGB can be used for real transparency -### NOTE that a composite manager is required for real transparency. -### This option will not work as desired (in most cases) in conjunction with -### own_window_type normal -# own_window_argb_visual yes # Options: yes or no +-- pkill -xf "conky -c $HOME/.config/conky/CB-Right.conkyrc" & +--## Begin Window Settings ##################### + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Bunsen Labs CB Right Conky', -### When ARGB visuals are enabled, this use this to modify the alpha value -### Use: own_window_type normal -### Use: own_window_transparent no -### Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. -# own_window_argb_value 150 +--## ARGB can be used for real transparency +--## NOTE that a composite manager is required for real transparency. +--## This option will not work as desired (in most cases) in conjunction with +--## own_window_type normal +-- own_window_argb_visual yes # Options: yes or no -minimum_size 200 0 ### width | height -maximum_width 200 +--## When ARGB visuals are enabled, this use this to modify the alpha value +--## Use: own_window_type normal +--## Use: own_window_transparent no +--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. +-- own_window_argb_value 150 -gap_x 20 ### left | right -gap_y 45 ### up | down + minimum_width = 200, minimum_height = 0,--## width | height + maximum_width = 200, -alignment tr -####################### End Window Settings ### -### Font Settings ############################# -# Use Xft (anti-aliased font and stuff) -use_xft yes -#xftfont Liberation Mono:bold:size=10 -#xftfont Liberation Sans:bold:size=10 -xftfont Sans-serif:bold:size=10 + gap_x = 20,--## left | right + gap_y = 45,--## up | down -# Alpha of Xft font. Must be a value at or between 1 and 0 -xftalpha 1 -# Force UTF8? requires XFT ### -override_utf8_locale yes + alignment = 'top_right', +--###################### End Window Settings ### +--## Font Settings ############################# +-- Use Xft (anti-aliased font and stuff) + use_xft = true, +--xftfont Liberation Mono:bold:size=10 +--xftfont Liberation Sans:bold:size=10 + font = 'Sans-serif:bold:size=10', -uppercase no -######################### End Font Settings ### -### Color Settings ############################ -draw_shades no #yes -default_shade_color 000000 +-- Alpha of Xft font. Must be a value at or between 1 and 0 + xftalpha = 1, +-- Force UTF8? requires XFT ### + override_utf8_locale = true, -draw_outline no # amplifies text if yes -default_outline_color 000000 + uppercase = false, +--######################## End Font Settings ### +--## Color Settings ############################ + draw_shades = false,--yes + default_shade_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -default_color C0C0C0 # Silver -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -color2 D8BFD8 # Thistle -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed -####################### End Colour Settings ### -### Borders Section ########################### -draw_borders no -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -draw_graph_borders no -#default_graph_size 15 40 -####################### End Borders Section ### -### Miscellaneous Section ##################### -# Boolean value, if true, Conky will be forked to background when started. -background yes + draw_outline = false,-- amplifies text if yes + default_outline_color = '#000000', -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey + default_color = '#C0C0C0',-- Silver + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray + color2 = '#D8BFD8',-- Thistle + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed +--###################### End Colour Settings ### +--## Borders Section ########################### + draw_borders = false, +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = false, +--default_graph_size 15 40 +--###################### End Borders Section ### +--## Miscellaneous Section ##################### +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Default and Minimum size is 256 - needs more for single commands that -# "call" a lot of text IE: bash scripts -#text_buffer_size 6144 +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Default and Minimum size is 256 - needs more for single commands that +-- "call" a lot of text IE: bash scripts +--text_buffer_size 6144 -# change GiB to G and MiB to M -short_units yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Like it says, ot pads the decimals on % values -# doesn't seem to work since v1.7.1 -pad_percents 2 +-- change GiB to G and MiB to M + short_units = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Like it says, ot pads the decimals on % values +-- doesn't seem to work since v1.7.1 + pad_percents = 2, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Maximum size of user text buffer, i.e. layout below TEXT line in config file -# (default is 16384 bytes) -# max_user_text 16384 +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -# Desired output unit of all objects displaying a temperature. Parameters are -# either "fahrenheit" or "celsius". The default unit is degree Celsius. -# temperature_unit Fahrenheit +-- Maximum size of user text buffer, i.e. layout below TEXT line in config file +-- (default is 16384 bytes) +-- max_user_text 16384 -################# End Miscellaneous Section ### +-- Desired output unit of all objects displaying a temperature. Parameters are +-- either "fahrenheit" or "celsius". The default unit is degree Celsius. +-- temperature_unit Fahrenheit -update_interval 1 +--################ End Miscellaneous Section ### -TEXT + update_interval = 1, + +}; + +conky.text = [[ S Y S T E M I N F O ${hr} Host:${alignr}${nodename} @@ -161,3 +164,4 @@ Super + l${alignr}Lock Screen Super + v${alignr}Volume Control Super + x${alignr}Logout PrtSc${alignr}Screenshot +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc index 0125614..66e1308 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc @@ -1,117 +1,121 @@ -# For commands above TEXT check: -# http://conky.sourceforge.net/config_settings.html -# -# For commands available below TEXT check: -# http://conky.sourceforge.net/variables.html +conky.config = { +-- For commands above TEXT check: +-- http://conky.sourceforge.net/config_settings.html -# Bunsen Labs Conky help threads -# http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 +-- For commands available below TEXT check: +-- http://conky.sourceforge.net/variables.html -# beta tested by: smacz -# Enjoy! :) +-- Bunsen Labs Conky help threads +-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 -# pkill -xf "conky -q -c $HOME/.config/conky/MB-Text.conkyrc" & -### Begin Window Settings ##################### -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Branding Conky +-- beta tested by: smacz +-- Enjoy! :) -### ARGB can be used for real transparency -### NOTE that a composite manager is required for real transparency. -### This option will not work as desired (in most cases) in conjunction with -### own_window_type normal -# own_window_argb_visual yes # Options: yes or no +-- pkill -xf "conky -q -c $HOME/.config/conky/MB-Text.conkyrc" & +--## Begin Window Settings ##################### + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Branding Conky', -### When ARGB visuals are enabled, this use this to modify the alpha value -### Use: own_window_type normal -### Use: own_window_transparent no -### Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. -# own_window_argb_value 0 +--## ARGB can be used for real transparency +--## NOTE that a composite manager is required for real transparency. +--## This option will not work as desired (in most cases) in conjunction with +--## own_window_type normal +-- own_window_argb_visual yes # Options: yes or no -minimum_size 320 80 ### w|h -#maximum_width 180 +--## When ARGB visuals are enabled, this use this to modify the alpha value +--## Use: own_window_type normal +--## Use: own_window_transparent no +--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. +-- own_window_argb_value 0 -gap_x -100 ### l|r -gap_y -113 ### u|d + minimum_width = 320, minimum_height = 80,--## w|h +--maximum_width 180 -alignment br -####################### End Window Settings ### -### Font Settings ############################# -# Use Xft (anti-aliased font and stuff) -use_xft yes + gap_x = -100,--## l|r + gap_y = -113,--## u|d -xftfont Monospace:bold:size=9 -#xftfont Fantasque Sans Mono:bold:size=9 + alignment = 'bottom_right', +--###################### End Window Settings ### +--## Font Settings ############################# +-- Use Xft (anti-aliased font and stuff) + use_xft = true, + + font = 'Monospace:bold:size=9', +--xftfont Fantasque Sans Mono:bold:size=9 -# Alpha of Xft font. Must be a value at or between 1 and 0 ### -xftalpha 1 -# Force UTF8? requires XFT ### -override_utf8_locale yes +-- Alpha of Xft font. Must be a value at or between 1 and 0 ### + xftalpha = 1, +-- Force UTF8? requires XFT ### + override_utf8_locale = true, -uppercase no -######################### End Font Settings ### -### Colour Settings ########################### -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + uppercase = false, +--######################## End Font Settings ### +--## Colour Settings ########################### + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -default_color C0C0C0 # Silver -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -color2 D8BFD8 # Thistle -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed -####################### End Colour Settings ### -### Borders Section ########################### -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 -####################### End Borders Section ### -### Miscellaneous Section ##################### -# Boolean value, if true, Conky will be forked to background when started. -background yes +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey + default_color = '#C0C0C0',-- Silver + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray + color2 = '#D8BFD8',-- Thistle + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed +--###################### End Colour Settings ### +--## Borders Section ########################### + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 +--###################### End Borders Section ### +--## Miscellaneous Section ##################### +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes -################# End Miscellaneous Section ### +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, +--################ End Miscellaneous Section ### -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${image $HOME/.config/conky/images/mabox.png} +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc index 3a8bb4e..45b554f 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc @@ -1,55 +1,58 @@ +conky.config = { -own_window yes -own_window_type desktop -# own_window_argb_visual yes -# own_window_argb_value 125 -own_window_transparent yes -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Quakeworld Monitor Conky + own_window = true, + own_window_type = 'desktop', +-- own_window_argb_visual yes +-- own_window_argb_value 125 + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Quakeworld Monitor Conky', -gap_x 15 -gap_y 50 -alignment tr -minimum_width 200 -minimum_size 200 + gap_x = 15, + gap_y = 50, + alignment = 'top_right', + minimum_width = '200', + minimum_width = 200, -use_xft yes -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + use_xft = true, + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -color2 777777 -color3 006600 -cpu_avg_samples 2 -default_color FFFFFF + color2 = '#777777', + color3 = '#006600', + cpu_avg_samples = 2, + default_color = '#FFFFFF', -draw_borders no #yes + draw_borders = false,--yes -stippled_borders 5 -border_inner_margin 5 -border_outer_margin 0 -border_width 2 + stippled_borders = 5, + border_inner_margin = 5, + border_outer_margin = 0, + border_width = 2, -background yes -no_buffers yes -imlib_cache_size 0 + background = true, + no_buffers = true, + imlib_cache_size = 0, -double_buffer yes -update_interval 1 + double_buffer = true, + update_interval = 1, -TEXT +}; + +conky.text = [[ ${voffset 8}$color${font Cantarell:size=16}${time %A}$font${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e}$font $color${voffset -20}$color${font Cantarell:size=18}${time %B}$font${voffset -1} $color${font Cantarell:size=20}${time %Y}$font #${voffset 10}$alignr$color Kraków (PL) ${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ EPKK temperature temperature 15}°C @@ -82,3 +85,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}filesystem ${color}${fs_type} ${voffset 10}${alignr}${color} available updates ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} ${alignr}${color} installed pkgs: ${color2}${execi 10000 pacman -Q | wc -l} ${alignr}${color} branch: ${color2}${execi 10000 pacman-mirrors -G} +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc index 50ce02c..9f63554 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc @@ -1,48 +1,51 @@ -## ManjaroBox Conky Configuration Script -## -## Written by Carl Duff & Ugo Yak -## Modified by Aaditya Bagga (aaditya_gnulinux@zoho.com) -## -## Website: www.manjaro.org - Forum: http://forum.manjaro.org/ -## +conky.config = { +--# ManjaroBox Conky Configuration Script +--# +--# Written by Carl Duff & Ugo Yak +--# Modified by Aaditya Bagga (aaditya_gnulinux@zoho.com) +--# +--# Website: www.manjaro.org - Forum: http://forum.manjaro.org/ +--# -# Basic Settings +-- Basic Settings -background yes -use_xft yes -xftfont sans:size=11 -xftalpha 1 -update_interval 1.0 -total_run_times 0 -own_window yes -own_window_transparent yes -own_window_type desktop -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_class Conky -double_buffer yes -minimum_size 300 1 -maximum_width 600 -draw_shades no -draw_outline no -draw_borders no -draw_graph_borders no -default_color Black -default_shade_color 000000 -default_outline_color d9d7d6 -alignment tr -#conkymove, original value for gap_x: 5 -gap_x 12 -#conkymove, original value for gap_y: 40 -gap_y 70 -no_buffers yes -uppercase no -cpu_avg_samples 2 -override_utf8_locale yes + background = true, + use_xft = true, + font = 'sans:size=11', + xftalpha = 1, + update_interval = 1.0, + total_run_times = 0, + own_window = true, + own_window_transparent = true, + own_window_type = 'desktop', + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_class = 'Conky', + double_buffer = true, + minimum_width = 300, minimum_height = 1, + maximum_width = 600, + draw_shades = false, + draw_outline = false, + draw_borders = false, + draw_graph_borders = false, + default_color = 'Black', + default_shade_color = '#000000', + default_outline_color = '#d9d7d6', + alignment = 'top_right', +--conkymove, original value for gap_x: 5 + gap_x = 12, +--conkymove, original value for gap_y: 40 + gap_y = 70, + no_buffers = true, + uppercase = false, + cpu_avg_samples = 2, + override_utf8_locale = true, -## -## ManjaroBox Conky Display -## -TEXT +--# +--# ManjaroBox Conky Display +--# +}; + +conky.text = [[ ${font sans:bold:size=18}${alignr}${color #35BF5C}${time %e} ${color #BEBEBE}${time %B}${color #35BF5C} ${time %Y}${color #BEBEBE} ${alignr}${time %l:%M}${font sans:bold:size=15}${time %p}${voffset -8} ${color #BEBEBE}${hr 1}${voffset -4} @@ -67,3 +70,4 @@ ${alignr}${color #BEBEBE}Show Desktop${voffset -5} ${font sans:bold:size=9}${alignr}${color #35BF5C}Super + t ${alignr}${color #BEBEBE}Terminal${voffset -5} +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc index 46961cf..09478f9 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc @@ -1,55 +1,58 @@ +conky.config = { -own_window yes -own_window_type desktop -# own_window_argb_visual yes -# own_window_argb_value 125 -own_window_transparent yes -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Quakeworld Monitor Conky + own_window = true, + own_window_type = 'desktop', +-- own_window_argb_visual yes +-- own_window_argb_value 125 + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Quakeworld Monitor Conky', -gap_x 15 -gap_y 50 -alignment tr -minimum_width 200 -minimum_size 200 + gap_x = 15, + gap_y = 50, + alignment = 'top_right', + minimum_width = '200', + minimum_width = 200, -use_xft yes -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + use_xft = true, + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -color2 2ECC71 -color3 db6823 -cpu_avg_samples 2 -default_color CCCCCC + color2 = '#2ECC71', + color3 = '#db6823', + cpu_avg_samples = 2, + default_color = '#CCCCCC', -draw_borders no #yes + draw_borders = false,--yes -stippled_borders 5 -border_inner_margin 5 -border_outer_margin 0 -border_width 2 + stippled_borders = 5, + border_inner_margin = 5, + border_outer_margin = 0, + border_width = 2, -background yes -no_buffers yes -imlib_cache_size 0 + background = true, + no_buffers = true, + imlib_cache_size = 0, -double_buffer yes -update_interval 1 + double_buffer = true, + update_interval = 1, -TEXT +}; + +conky.text = [[ ${voffset 8}$color${font Cantarell:size=16}${time %A}$font${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e}$font $color${voffset -20}$color${font Cantarell:size=18}${time %B}$font${voffset -1} $color${font Cantarell:size=20}${time %Y}$font #${voffset 10}$alignr$color Kraków (PL) ${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ EPKK temperature temperature 15}°C @@ -82,3 +85,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}filesystem ${color}${fs_type} ${voffset 10}${alignr}${color} available updates ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} ${alignr}${color} installed pkgs: ${color2}${execi 10000 pacman -Q | wc -l} ${alignr}${color} branch: ${color2}${execi 10000 pacman-mirrors -G} +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc index 834b893..3328fce 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc @@ -1,55 +1,58 @@ +conky.config = { -own_window yes -own_window_type desktop -# own_window_argb_visual yes -# own_window_argb_value 125 -own_window_transparent yes -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Quakeworld Monitor Conky + own_window = true, + own_window_type = 'desktop', +-- own_window_argb_visual yes +-- own_window_argb_value 125 + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Quakeworld Monitor Conky', -gap_x 15 -gap_y 50 -alignment tr -minimum_width 200 -minimum_size 200 + gap_x = 15, + gap_y = 50, + alignment = 'top_right', + minimum_width = '200', + minimum_width = 200, -use_xft yes -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + use_xft = true, + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -color2 f6cb33 -color3 5e0b0b -cpu_avg_samples 2 -default_color CCCCCC + color2 = '#f6cb33', + color3 = '#5e0b0b', + cpu_avg_samples = 2, + default_color = '#CCCCCC', -draw_borders no #yes + draw_borders = false,--yes -stippled_borders 5 -border_inner_margin 5 -border_outer_margin 0 -border_width 2 + stippled_borders = 5, + border_inner_margin = 5, + border_outer_margin = 0, + border_width = 2, -background yes -no_buffers yes -imlib_cache_size 0 + background = true, + no_buffers = true, + imlib_cache_size = 0, -double_buffer yes -update_interval 1 + double_buffer = true, + update_interval = 1, -TEXT +}; + +conky.text = [[ ${voffset 8}$color${font Cantarell:size=16}${time %A}$font${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e}$font $color${voffset -20}$color${font Cantarell:size=18}${time %B}$font${voffset -1} $color${font Cantarell:size=20}${time %Y}$font #${voffset 10}$alignr$color Kraków (PL) ${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ EPKK temperature temperature 15}°C @@ -82,3 +85,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}filesystem ${color}${fs_type} ${voffset 10}${alignr}${color} available updates ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} ${alignr}${color} installed pkgs: ${color2}${execi 10000 pacman -Q | wc -l} ${alignr}${color} branch: ${color2}${execi 10000 pacman-mirrors -G} +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc index f2984f0..cb0d156 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc @@ -1,86 +1,89 @@ -# WINDOW -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Shortcuts Conky +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', -gap_x 65 -gap_y 45 -minimum_width 200 -#alignment mm + gap_x = 65, + gap_y = 45, + minimum_width = '200', +--alignment mm -# FONTS +-- FONTS -use_xft yes + use_xft = true, -xftfont Cantarell:bold:size=9 -xftalpha 1 -override_utf8_locale yes + font = 'Cantarell:bold:size=9', + xftalpha = 1, + override_utf8_locale = true, -# COLORS -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 +-- COLORS + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -#default_color C0C0C0 # Silver -default_color FFFFFF -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -#color2 D8BFD8 # Thistle -color2 2ECC71 -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey +--default_color C0C0C0 # Silver + default_color = '#FFFFFF', + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray +--color2 D8BFD8 # Thistle + color2 = '#2ECC71', + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed -# BORDERS -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 +-- BORDERS + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 -# MISC +-- MISC -# Boolean value, if true, Conky will be forked to background when started. -background yes +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${color}RUN${alignr}${color2}super = windows key${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}file manager ${alignr}${color}super+f @@ -114,3 +117,4 @@ ${color2} - 1/4 screen ${alignr} ${color}super+numpad[1..9] ${color}DESKTOPS${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}go to desktop ${alignr} ${color}super+[F1..F4] +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc index 49f3200..6213f8f 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc @@ -1,87 +1,90 @@ -# WINDOW -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Shortcuts Conky +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', -gap_x 65 -gap_y 45 -minimum_width 200 -#alignment mm + gap_x = 65, + gap_y = 45, + minimum_width = '200', +--alignment mm -# FONTS +-- FONTS -use_xft yes + use_xft = true, -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, -# COLORS -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 +-- COLORS + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -#default_color C0C0C0 # Silver -default_color FFFFFF -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -#color2 D8BFD8 # Thistle -color2 777777 -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey +--default_color C0C0C0 # Silver + default_color = '#FFFFFF', + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray +--color2 D8BFD8 # Thistle + color2 = '#777777', + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed -# BORDERS -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 +-- BORDERS + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 -# MISC +-- MISC -# Boolean value, if true, Conky will be forked to background when started. -background yes +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${color}RUN${alignr}${color2}super = windows key${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}file manager ${alignr}${color}super+f @@ -115,3 +118,4 @@ ${color2} - 1/4 screen ${alignr} ${color}super+numpad[1..9] ${color}DESKTOPS${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}go to desktop ${alignr} ${color}super+[F1..F4] +]]; diff --git a/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc b/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc index c69c79e..f337bf4 100644 --- a/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc +++ b/mabox-en/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc @@ -1,86 +1,89 @@ -# WINDOW -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Shortcuts Conky +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', -gap_x 65 -gap_y 45 -minimum_width 200 -#alignment mm + gap_x = 65, + gap_y = 45, + minimum_width = '200', +--alignment mm -# FONTS +-- FONTS -use_xft yes + use_xft = true, -xftfont Cantarell:bold:size=9 -xftalpha 1 -override_utf8_locale yes + font = 'Cantarell:bold:size=9', + xftalpha = 1, + override_utf8_locale = true, -# COLORS -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 +-- COLORS + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -#default_color C0C0C0 # Silver -default_color f6cb33 -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -#color2 D8BFD8 # Thistle -color2 CCCCCC -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey +--default_color C0C0C0 # Silver + default_color = '#f6cb33', + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray +--color2 D8BFD8 # Thistle + color2 = '#CCCCCC', + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed -# BORDERS -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 +-- BORDERS + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 -# MISC +-- MISC -# Boolean value, if true, Conky will be forked to background when started. -background yes +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${color}RUN${alignr}${color2}super = windows key${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}file manager ${alignr}${color}super+f @@ -114,3 +117,4 @@ ${color2} - 1/4 screen ${alignr} ${color}super+numpad[1..9] ${color}DESKTOPS${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}go to desktop ${alignr} ${color}super+[F1..F4] +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc index 4582572..003daa3 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Left.conkyrc @@ -1,139 +1,142 @@ -# For commands above TEXT check: -# http://conky.sourceforge.net/config_settings.html -# -# For commands available below TEXT check: -# http://conky.sourceforge.net/variables.html +conky.config = { +-- For commands above TEXT check: +-- http://conky.sourceforge.net/config_settings.html -# Bunsen Labs Conky help threads -# http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 +-- For commands available below TEXT check: +-- http://conky.sourceforge.net/variables.html -# beta tested by: smacz -# Enjoy! :) +-- Bunsen Labs Conky help threads +-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 -# pkill -xf "conky -c $HOME/.config/conky/CB-Left.conkyrc" & -### Begin Window Settings ##################### -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Bunsen Labs CB Left Conky +-- beta tested by: smacz +-- Enjoy! :) -### ARGB can be used for real transparency -### NOTE that a composite manager is required for real transparency. -### This option will not work as desired (in most cases) in conjunction with -### own_window_type normal -# own_window_argb_visual yes # Options: yes or no +-- pkill -xf "conky -c $HOME/.config/conky/CB-Left.conkyrc" & +--## Begin Window Settings ##################### + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Bunsen Labs CB Left Conky', -### When ARGB visuals are enabled, this use this to modify the alpha value -### Use: own_window_type normal -### Use: own_window_transparent no -### Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. -# own_window_argb_value 150 +--## ARGB can be used for real transparency +--## NOTE that a composite manager is required for real transparency. +--## This option will not work as desired (in most cases) in conjunction with +--## own_window_type normal +-- own_window_argb_visual yes # Options: yes or no -minimum_size 200 0 ### width | height -maximum_width 200 +--## When ARGB visuals are enabled, this use this to modify the alpha value +--## Use: own_window_type normal +--## Use: own_window_transparent no +--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. +-- own_window_argb_value 150 -gap_x 20 ### l|r -gap_y 45 ### u|d + minimum_width = 200, minimum_height = 0,--## width | height + maximum_width = 200, -alignment tl -####################### End Window Settings ### -### Font Settings ############################# -# Use Xft (anti-aliased font and stuff) -use_xft yes -#xftfont Liberation Mono:bold:size=10 -#xftfont Liberation Sans:size=10 -xftfont Sans-serif:size=10 + gap_x = 20,--## l|r + gap_y = 45,--## u|d -# Alpha of Xft font. Must be a value at or between 1 and 0 -xftalpha 1 -# Force UTF8? requires XFT ### -override_utf8_locale yes + alignment = 'top_left', +--###################### End Window Settings ### +--## Font Settings ############################# +-- Use Xft (anti-aliased font and stuff) + use_xft = true, +--xftfont Liberation Mono:bold:size=10 +--xftfont Liberation Sans:size=10 + font = 'Sans-serif:size=10', -uppercase no -######################### End Font Settings ### -### Color Settings ############################ -draw_shades no #yes -default_shade_color 000000 +-- Alpha of Xft font. Must be a value at or between 1 and 0 + xftalpha = 1, +-- Force UTF8? requires XFT ### + override_utf8_locale = true, -draw_outline no # amplifies text if yes -default_outline_color 000000 + uppercase = false, +--######################## End Font Settings ### +--## Color Settings ############################ + draw_shades = false,--yes + default_shade_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -default_color C0C0C0 # Silver -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -color2 D8BFD8 # Thistle -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed -####################### End Colour Settings ### -### Borders Section ########################### -draw_borders no -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -draw_graph_borders no -#default_graph_size 15 40 -####################### End Borders Section ### -### Miscellaneous Section ##################### -# Boolean value, if true, Conky will be forked to background when started. -background yes + draw_outline = false,-- amplifies text if yes + default_outline_color = '#000000', -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey + default_color = '#C0C0C0',-- Silver + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray + color2 = '#D8BFD8',-- Thistle + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed +--###################### End Colour Settings ### +--## Borders Section ########################### + draw_borders = false, +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = false, +--default_graph_size 15 40 +--###################### End Borders Section ### +--## Miscellaneous Section ##################### +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Default and Minimum size is 256 - needs more for single commands that -# "call" a lot of text IE: bash scripts -#text_buffer_size 6144 +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Default and Minimum size is 256 - needs more for single commands that +-- "call" a lot of text IE: bash scripts +--text_buffer_size 6144 -# change GiB to G and MiB to M -short_units yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Like it says, ot pads the decimals on % values -# doesn't seem to work since v1.7.1 -pad_percents 2 +-- change GiB to G and MiB to M + short_units = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Like it says, ot pads the decimals on % values +-- doesn't seem to work since v1.7.1 + pad_percents = 2, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Maximum size of user text buffer, i.e. layout below TEXT line in config file -# (default is 16384 bytes) -# max_user_text 16384 +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -# Desired output unit of all objects displaying a temperature. Parameters are -# either "fahrenheit" or "celsius". The default unit is degree Celsius. -# temperature_unit Fahrenheit +-- Maximum size of user text buffer, i.e. layout below TEXT line in config file +-- (default is 16384 bytes) +-- max_user_text 16384 -################# End Miscellaneous Section ### +-- Desired output unit of all objects displaying a temperature. Parameters are +-- either "fahrenheit" or "celsius". The default unit is degree Celsius. +-- temperature_unit Fahrenheit -update_interval 1 +--################ End Miscellaneous Section ### -TEXT + update_interval = 1, + +}; + +conky.text = [[ ${alignr}S Y S T E M I N F O ${membar 0} Host:${alignr}${nodename} @@ -161,3 +164,4 @@ Super + l${alignr}Lock Screen Super + v${alignr}Volume Control Super + x${alignr}Logout PrtSc${alignr}Screenshot +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc index aba3e7a..f87efa1 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/CB-Right.conkyrc @@ -1,139 +1,142 @@ -# For commands above TEXT check: -# http://conky.sourceforge.net/config_settings.html -# -# For commands available below TEXT check: -# http://conky.sourceforge.net/variables.html +conky.config = { +-- For commands above TEXT check: +-- http://conky.sourceforge.net/config_settings.html -# Bunsen Labs Conky help threads -# http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 +-- For commands available below TEXT check: +-- http://conky.sourceforge.net/variables.html -# beta tested by: smacz -# Enjoy! :) +-- Bunsen Labs Conky help threads +-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 -# pkill -xf "conky -c $HOME/.config/conky/CB-Right.conkyrc" & -### Begin Window Settings ##################### -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Bunsen Labs CB Right Conky +-- beta tested by: smacz +-- Enjoy! :) -### ARGB can be used for real transparency -### NOTE that a composite manager is required for real transparency. -### This option will not work as desired (in most cases) in conjunction with -### own_window_type normal -# own_window_argb_visual yes # Options: yes or no +-- pkill -xf "conky -c $HOME/.config/conky/CB-Right.conkyrc" & +--## Begin Window Settings ##################### + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Bunsen Labs CB Right Conky', -### When ARGB visuals are enabled, this use this to modify the alpha value -### Use: own_window_type normal -### Use: own_window_transparent no -### Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. -# own_window_argb_value 150 +--## ARGB can be used for real transparency +--## NOTE that a composite manager is required for real transparency. +--## This option will not work as desired (in most cases) in conjunction with +--## own_window_type normal +-- own_window_argb_visual yes # Options: yes or no -minimum_size 200 0 ### width | height -maximum_width 200 +--## When ARGB visuals are enabled, this use this to modify the alpha value +--## Use: own_window_type normal +--## Use: own_window_transparent no +--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. +-- own_window_argb_value 150 -gap_x 20 ### left | right -gap_y 45 ### up | down + minimum_width = 200, minimum_height = 0,--## width | height + maximum_width = 200, -alignment tr -####################### End Window Settings ### -### Font Settings ############################# -# Use Xft (anti-aliased font and stuff) -use_xft yes -#xftfont Liberation Mono:bold:size=10 -#xftfont Liberation Sans:bold:size=10 -xftfont Sans-serif:bold:size=10 + gap_x = 20,--## left | right + gap_y = 45,--## up | down -# Alpha of Xft font. Must be a value at or between 1 and 0 -xftalpha 1 -# Force UTF8? requires XFT ### -override_utf8_locale yes + alignment = 'top_right', +--###################### End Window Settings ### +--## Font Settings ############################# +-- Use Xft (anti-aliased font and stuff) + use_xft = true, +--xftfont Liberation Mono:bold:size=10 +--xftfont Liberation Sans:bold:size=10 + font = 'Sans-serif:bold:size=10', -uppercase no -######################### End Font Settings ### -### Color Settings ############################ -draw_shades no #yes -default_shade_color 000000 +-- Alpha of Xft font. Must be a value at or between 1 and 0 + xftalpha = 1, +-- Force UTF8? requires XFT ### + override_utf8_locale = true, -draw_outline no # amplifies text if yes -default_outline_color 000000 + uppercase = false, +--######################## End Font Settings ### +--## Color Settings ############################ + draw_shades = false,--yes + default_shade_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -default_color C0C0C0 # Silver -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -color2 D8BFD8 # Thistle -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed -####################### End Colour Settings ### -### Borders Section ########################### -draw_borders no -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -draw_graph_borders no -#default_graph_size 15 40 -####################### End Borders Section ### -### Miscellaneous Section ##################### -# Boolean value, if true, Conky will be forked to background when started. -background yes + draw_outline = false,-- amplifies text if yes + default_outline_color = '#000000', -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey + default_color = '#C0C0C0',-- Silver + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray + color2 = '#D8BFD8',-- Thistle + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed +--###################### End Colour Settings ### +--## Borders Section ########################### + draw_borders = false, +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = false, +--default_graph_size 15 40 +--###################### End Borders Section ### +--## Miscellaneous Section ##################### +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Default and Minimum size is 256 - needs more for single commands that -# "call" a lot of text IE: bash scripts -#text_buffer_size 6144 +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Default and Minimum size is 256 - needs more for single commands that +-- "call" a lot of text IE: bash scripts +--text_buffer_size 6144 -# change GiB to G and MiB to M -short_units yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Like it says, ot pads the decimals on % values -# doesn't seem to work since v1.7.1 -pad_percents 2 +-- change GiB to G and MiB to M + short_units = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Like it says, ot pads the decimals on % values +-- doesn't seem to work since v1.7.1 + pad_percents = 2, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Maximum size of user text buffer, i.e. layout below TEXT line in config file -# (default is 16384 bytes) -# max_user_text 16384 +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -# Desired output unit of all objects displaying a temperature. Parameters are -# either "fahrenheit" or "celsius". The default unit is degree Celsius. -# temperature_unit Fahrenheit +-- Maximum size of user text buffer, i.e. layout below TEXT line in config file +-- (default is 16384 bytes) +-- max_user_text 16384 -################# End Miscellaneous Section ### +-- Desired output unit of all objects displaying a temperature. Parameters are +-- either "fahrenheit" or "celsius". The default unit is degree Celsius. +-- temperature_unit Fahrenheit -update_interval 1 +--################ End Miscellaneous Section ### -TEXT + update_interval = 1, + +}; + +conky.text = [[ S Y S T E M I N F O ${hr} Host:${alignr}${nodename} @@ -161,3 +164,4 @@ Super + l${alignr}Lock Screen Super + v${alignr}Volume Control Super + x${alignr}Logout PrtSc${alignr}Screenshot +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc index 0125614..66e1308 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/MB-Text.conkyrc @@ -1,117 +1,121 @@ -# For commands above TEXT check: -# http://conky.sourceforge.net/config_settings.html -# -# For commands available below TEXT check: -# http://conky.sourceforge.net/variables.html +conky.config = { +-- For commands above TEXT check: +-- http://conky.sourceforge.net/config_settings.html -# Bunsen Labs Conky help threads -# http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 +-- For commands available below TEXT check: +-- http://conky.sourceforge.net/variables.html -# beta tested by: smacz -# Enjoy! :) +-- Bunsen Labs Conky help threads +-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424 -# pkill -xf "conky -q -c $HOME/.config/conky/MB-Text.conkyrc" & -### Begin Window Settings ##################### -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Branding Conky +-- beta tested by: smacz +-- Enjoy! :) -### ARGB can be used for real transparency -### NOTE that a composite manager is required for real transparency. -### This option will not work as desired (in most cases) in conjunction with -### own_window_type normal -# own_window_argb_visual yes # Options: yes or no +-- pkill -xf "conky -q -c $HOME/.config/conky/MB-Text.conkyrc" & +--## Begin Window Settings ##################### + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Branding Conky', -### When ARGB visuals are enabled, this use this to modify the alpha value -### Use: own_window_type normal -### Use: own_window_transparent no -### Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. -# own_window_argb_value 0 +--## ARGB can be used for real transparency +--## NOTE that a composite manager is required for real transparency. +--## This option will not work as desired (in most cases) in conjunction with +--## own_window_type normal +-- own_window_argb_visual yes # Options: yes or no -minimum_size 320 80 ### w|h -#maximum_width 180 +--## When ARGB visuals are enabled, this use this to modify the alpha value +--## Use: own_window_type normal +--## Use: own_window_transparent no +--## Valid range is 0-255, where 0 is 0% opacity, and 255 is 100% opacity. +-- own_window_argb_value 0 -gap_x -100 ### l|r -gap_y -113 ### u|d + minimum_width = 320, minimum_height = 80,--## w|h +--maximum_width 180 -alignment br -####################### End Window Settings ### -### Font Settings ############################# -# Use Xft (anti-aliased font and stuff) -use_xft yes + gap_x = -100,--## l|r + gap_y = -113,--## u|d -xftfont Monospace:bold:size=9 -#xftfont Fantasque Sans Mono:bold:size=9 + alignment = 'bottom_right', +--###################### End Window Settings ### +--## Font Settings ############################# +-- Use Xft (anti-aliased font and stuff) + use_xft = true, + + font = 'Monospace:bold:size=9', +--xftfont Fantasque Sans Mono:bold:size=9 -# Alpha of Xft font. Must be a value at or between 1 and 0 ### -xftalpha 1 -# Force UTF8? requires XFT ### -override_utf8_locale yes +-- Alpha of Xft font. Must be a value at or between 1 and 0 ### + xftalpha = 1, +-- Force UTF8? requires XFT ### + override_utf8_locale = true, -uppercase no -######################### End Font Settings ### -### Colour Settings ########################### -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + uppercase = false, +--######################## End Font Settings ### +--## Colour Settings ########################### + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -default_color C0C0C0 # Silver -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -color2 D8BFD8 # Thistle -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed -####################### End Colour Settings ### -### Borders Section ########################### -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 -####################### End Borders Section ### -### Miscellaneous Section ##################### -# Boolean value, if true, Conky will be forked to background when started. -background yes +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey + default_color = '#C0C0C0',-- Silver + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray + color2 = '#D8BFD8',-- Thistle + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed +--###################### End Colour Settings ### +--## Borders Section ########################### + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 +--###################### End Borders Section ### +--## Miscellaneous Section ##################### +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes -################# End Miscellaneous Section ### +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, +--################ End Miscellaneous Section ### -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${image $HOME/.config/conky/images/mabox.png} +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/conky-sessionfile b/mabox-pl/desktop-overlay/etc/skel/.config/conky/conky-sessionfile index ce63888..2541415 100755 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/conky-sessionfile +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/conky-sessionfile @@ -1,3 +1,2 @@ -conky -c ~/.config/conky/MB-Text.conkyrc & sleep 1s -conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s -conky -c ~/.config/conky/grey_manjaro_JWM.conkyrc & sleep 1s +conky -c /home/napcok/.config/conky/manjaro_JWM.conkyrc & sleep 1s +conky -c /home/napcok/.config/conky/shortcuts_green.conkyrc & sleep 1s diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc index 267c1a5..2ac259f 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/grey_manjaro_JWM.conkyrc @@ -1,51 +1,54 @@ -own_window yes -own_window_type desktop -# own_window_argb_visual yes -# own_window_argb_value 125 -own_window_transparent yes -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Quakeworld Monitor Conky +conky.config = { + own_window = true, + own_window_type = 'desktop', +-- own_window_argb_visual yes +-- own_window_argb_value 125 + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Quakeworld Monitor Conky', -gap_x 15 -gap_y 50 -alignment tr -minimum_width 200 -minimum_size 200 + gap_x = 15, + gap_y = 50, + alignment = 'top_right', + minimum_width = '200', + minimum_width = 200, -use_xft yes -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + use_xft = true, + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -color2 777777 -color3 006600 -cpu_avg_samples 2 -default_color FFFFFF + color2 = '#777777', + color3 = '#006600', + cpu_avg_samples = 2, + default_color = '#FFFFFF', -draw_borders no #yes + draw_borders = false,--yes -stippled_borders 5 -border_inner_margin 5 -border_outer_margin 0 -border_width 2 + stippled_borders = 5, + border_inner_margin = 5, + border_outer_margin = 0, + border_width = 2, -background yes -no_buffers yes -imlib_cache_size 0 + background = true, + no_buffers = true, + imlib_cache_size = 0, -double_buffer yes -update_interval 1 + double_buffer = true, + update_interval = 1, -TEXT +}; + +conky.text = [[ ${voffset 8}$color${font Cantarell:size=16}${time %A}${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e} $alignr$color${voffset -40}$color${font Cantarell:size=18}${time %B} ${voffset -30}${goto 40}$color${font Cantarell:size=20}${time %Y} @@ -78,3 +81,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_t ${voffset 10}${alignr}${color} dostępne aktualizacje: ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color} ${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l} ${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G} +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc index 50ce02c..9f63554 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro.conkyrc @@ -1,48 +1,51 @@ -## ManjaroBox Conky Configuration Script -## -## Written by Carl Duff & Ugo Yak -## Modified by Aaditya Bagga (aaditya_gnulinux@zoho.com) -## -## Website: www.manjaro.org - Forum: http://forum.manjaro.org/ -## +conky.config = { +--# ManjaroBox Conky Configuration Script +--# +--# Written by Carl Duff & Ugo Yak +--# Modified by Aaditya Bagga (aaditya_gnulinux@zoho.com) +--# +--# Website: www.manjaro.org - Forum: http://forum.manjaro.org/ +--# -# Basic Settings +-- Basic Settings -background yes -use_xft yes -xftfont sans:size=11 -xftalpha 1 -update_interval 1.0 -total_run_times 0 -own_window yes -own_window_transparent yes -own_window_type desktop -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_class Conky -double_buffer yes -minimum_size 300 1 -maximum_width 600 -draw_shades no -draw_outline no -draw_borders no -draw_graph_borders no -default_color Black -default_shade_color 000000 -default_outline_color d9d7d6 -alignment tr -#conkymove, original value for gap_x: 5 -gap_x 12 -#conkymove, original value for gap_y: 40 -gap_y 70 -no_buffers yes -uppercase no -cpu_avg_samples 2 -override_utf8_locale yes + background = true, + use_xft = true, + font = 'sans:size=11', + xftalpha = 1, + update_interval = 1.0, + total_run_times = 0, + own_window = true, + own_window_transparent = true, + own_window_type = 'desktop', + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_class = 'Conky', + double_buffer = true, + minimum_width = 300, minimum_height = 1, + maximum_width = 600, + draw_shades = false, + draw_outline = false, + draw_borders = false, + draw_graph_borders = false, + default_color = 'Black', + default_shade_color = '#000000', + default_outline_color = '#d9d7d6', + alignment = 'top_right', +--conkymove, original value for gap_x: 5 + gap_x = 12, +--conkymove, original value for gap_y: 40 + gap_y = 70, + no_buffers = true, + uppercase = false, + cpu_avg_samples = 2, + override_utf8_locale = true, -## -## ManjaroBox Conky Display -## -TEXT +--# +--# ManjaroBox Conky Display +--# +}; + +conky.text = [[ ${font sans:bold:size=18}${alignr}${color #35BF5C}${time %e} ${color #BEBEBE}${time %B}${color #35BF5C} ${time %Y}${color #BEBEBE} ${alignr}${time %l:%M}${font sans:bold:size=15}${time %p}${voffset -8} ${color #BEBEBE}${hr 1}${voffset -4} @@ -67,3 +70,4 @@ ${alignr}${color #BEBEBE}Show Desktop${voffset -5} ${font sans:bold:size=9}${alignr}${color #35BF5C}Super + t ${alignr}${color #BEBEBE}Terminal${voffset -5} +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc index 8285b86..82b026c 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/manjaro_JWM.conkyrc @@ -1,51 +1,54 @@ -own_window yes -own_window_type desktop -# own_window_argb_visual yes -# own_window_argb_value 125 -own_window_transparent yes -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Quakeworld Monitor Conky +conky.config = { + own_window = true, + own_window_type = 'desktop', +-- own_window_argb_visual yes +-- own_window_argb_value 125 + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Quakeworld Monitor Conky', -gap_x 15 -gap_y 50 -alignment tr -minimum_width 200 -minimum_size 200 + gap_x = 15, + gap_y = 50, + alignment = 'top_right', + minimum_width = '200', + minimum_width = 200, -use_xft yes -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + use_xft = true, + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -color2 2ECC71 -color3 db6823 -cpu_avg_samples 2 -default_color CCCCCC + color2 = '#2ECC71', + color3 = '#db6823', + cpu_avg_samples = 2, + default_color = '#CCCCCC', -draw_borders no #yes + draw_borders = false,--yes -stippled_borders 5 -border_inner_margin 5 -border_outer_margin 0 -border_width 2 + stippled_borders = 5, + border_inner_margin = 5, + border_outer_margin = 0, + border_width = 2, -background yes -no_buffers yes -imlib_cache_size 0 + background = true, + no_buffers = true, + imlib_cache_size = 0, -double_buffer yes -update_interval 1 + double_buffer = true, + update_interval = 1, -TEXT +}; + +conky.text = [[ ${voffset 8}$color${font Cantarell:size=16}${time %A}${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e} $alignr$color${voffset -40}$color${font Cantarell:size=18}${time %B} ${voffset -30}${goto 40}$color${font Cantarell:size=20}${time %Y} @@ -78,3 +81,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_t ${voffset 10}${alignr}${color} dostępne aktualizacje: ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color} ${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l} ${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G} +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc index 8f697df..081b8cb 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/quakeworld_manjaro_JWM.conkyrc @@ -1,51 +1,54 @@ -own_window yes -own_window_type desktop -# own_window_argb_visual yes -# own_window_argb_value 125 -own_window_transparent yes -own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Quakeworld Monitor Conky +conky.config = { + own_window = true, + own_window_type = 'desktop', +-- own_window_argb_visual yes +-- own_window_argb_value 125 + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Quakeworld Monitor Conky', -gap_x 15 -gap_y 50 -alignment tr -minimum_width 200 -minimum_size 200 + gap_x = 15, + gap_y = 50, + alignment = 'top_right', + minimum_width = '200', + minimum_width = 200, -use_xft yes -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 + use_xft = true, + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -color2 f6cb33 -color3 5e0b0b -cpu_avg_samples 2 -default_color CCCCCC + color2 = '#f6cb33', + color3 = '#5e0b0b', + cpu_avg_samples = 2, + default_color = '#CCCCCC', -draw_borders no #yes + draw_borders = false,--yes -stippled_borders 5 -border_inner_margin 5 -border_outer_margin 0 -border_width 2 + stippled_borders = 5, + border_inner_margin = 5, + border_outer_margin = 0, + border_width = 2, -background yes -no_buffers yes -imlib_cache_size 0 + background = true, + no_buffers = true, + imlib_cache_size = 0, -double_buffer yes -update_interval 1 + double_buffer = true, + update_interval = 1, -TEXT +}; + +conky.text = [[ ${voffset 8}$color${font Cantarell:size=16}${time %A}${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e} $alignr$color${voffset -40}$color${font Cantarell:size=18}${time %B} ${voffset -30}${goto 40}$color${font Cantarell:size=20}${time %Y} @@ -78,3 +81,4 @@ ${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_t ${voffset 10}${alignr}${color} dostępne aktualizacje: ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color} ${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l} ${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G} +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc index addaa00..09b87f1 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_green.conkyrc @@ -1,86 +1,89 @@ -# WINDOW -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Shortcuts Conky +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', -gap_x 15 -gap_y 45 -minimum_width 200 -#alignment mm + gap_x = 15, + gap_y = 45, + minimum_width = '200', +--alignment mm -# FONTS +-- FONTS -use_xft yes + use_xft = true, -xftfont Cantarell:bold:size=9 -xftalpha 1 -override_utf8_locale yes + font = 'Cantarell:bold:size=9', + xftalpha = 1, + override_utf8_locale = true, -# COLORS -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 +-- COLORS + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -#default_color C0C0C0 # Silver -default_color FFFFFF -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -#color2 D8BFD8 # Thistle -color2 2ECC71 -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey +--default_color C0C0C0 # Silver + default_color = '#FFFFFF', + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray +--color2 D8BFD8 # Thistle + color2 = '#2ECC71', + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed -# BORDERS -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 +-- BORDERS + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 -# MISC +-- MISC -# Boolean value, if true, Conky will be forked to background when started. -background yes +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}menedżer plików ${alignr}${color}super+f @@ -114,3 +117,4 @@ ${color2} - 1/4 ekranu ${alignr} ${color}super+numeryczna[1..9] ${color}PULPITY${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}przejdź na pulpit ${alignr} ${color}super+[F1..F4] +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc index 6cdbc6f..625ca0f 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_grey.conkyrc @@ -1,87 +1,90 @@ -# WINDOW -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Shortcuts Conky +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', -gap_x 65 -gap_y 45 -minimum_width 200 -#alignment mm + gap_x = 65, + gap_y = 45, + minimum_width = '200', +--alignment mm -# FONTS +-- FONTS -use_xft yes + use_xft = true, -xftfont Cantarell:size=9 -xftalpha 1 -override_utf8_locale yes + font = 'Cantarell:size=9', + xftalpha = 1, + override_utf8_locale = true, -# COLORS -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 +-- COLORS + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -#default_color C0C0C0 # Silver -default_color FFFFFF -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -#color2 D8BFD8 # Thistle -color2 777777 -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey +--default_color C0C0C0 # Silver + default_color = '#FFFFFF', + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray +--color2 D8BFD8 # Thistle + color2 = '#777777', + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed -# BORDERS -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 +-- BORDERS + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 -# MISC +-- MISC -# Boolean value, if true, Conky will be forked to background when started. -background yes +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}menedżer plików ${alignr}${color}super+f @@ -115,3 +118,4 @@ ${color2} - 1/4 ekranu ${alignr} ${color}super+numeryczna[1..9] ${color}PULPITY${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}przejdź na pulpit ${alignr} ${color}super+[F1..F4] +]]; diff --git a/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc b/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc index da211b7..8d3fa4e 100644 --- a/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc +++ b/mabox-pl/desktop-overlay/etc/skel/.config/conky/shortcuts_quakeworld.conkyrc @@ -1,86 +1,89 @@ -# WINDOW -own_window yes -own_window_type desktop -own_window_transparent yes -own_window_hints undecorated,below,skip_taskbar,skip_pager,sticky -own_window_colour 000000 -own_window_class Conky -own_window_title Mabox Shortcuts Conky +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#000000', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', -gap_x 15 -gap_y 45 -minimum_width 200 -#alignment mm + gap_x = 15, + gap_y = 45, + minimum_width = '200', +--alignment mm -# FONTS +-- FONTS -use_xft yes + use_xft = true, -xftfont Cantarell:bold:size=9 -xftalpha 1 -override_utf8_locale yes + font = 'Cantarell:bold:size=9', + xftalpha = 1, + override_utf8_locale = true, -# COLORS -draw_shades no #yes -default_shade_color 000000 -draw_outline no -default_outline_color 000000 +-- COLORS + draw_shades = false,--yes + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#000000', -#default_color 656667 # Waldorf original colour -#default_color 7a7a7a # Flame & Bunsen Grey -#default_color 929292 # Labs Grey -#default_color C0C0C0 # Silver -default_color f6cb33 -color0 B0E0E6 # PowderBlue -color1 778899 # LightSlateGray -#color2 D8BFD8 # Thistle -color2 CCCCCC -color3 9ACD32 # YellowGreen -color4 FFA07A # LightSalmon -color5 FFDEAD # NavajoWhite -color6 00BFFF # DeepSkyBlue -color7 5F9EA0 # CadetBlue -color8 BDB76B # DarkKhaki -color9 CD5C5C # IndianRed +--default_color 656667 # Waldorf original colour +--default_color 7a7a7a # Flame & Bunsen Grey +--default_color 929292 # Labs Grey +--default_color C0C0C0 # Silver + default_color = '#f6cb33', + color0 = '#B0E0E6',-- PowderBlue + color1 = '#778899',-- LightSlateGray +--color2 D8BFD8 # Thistle + color2 = '#CCCCCC', + color3 = '#9ACD32',-- YellowGreen + color4 = '#FFA07A',-- LightSalmon + color5 = '#FFDEAD',-- NavajoWhite + color6 = '#00BFFF',-- DeepSkyBlue + color7 = '#5F9EA0',-- CadetBlue + color8 = '#BDB76B',-- DarkKhaki + color9 = '#CD5C5C',-- IndianRed -# BORDERS -draw_borders no #yes -# Stippled borders? -stippled_borders 5 -# border margins -border_inner_margin 5 -border_outer_margin 0 -# border width -border_width 2 -# graph borders -# draw_graph_borders yes -# default_graph_size 15 40 +-- BORDERS + draw_borders = false,--yes +-- Stippled borders? + stippled_borders = 5, +-- border margins + border_inner_margin = 5, + border_outer_margin = 0, +-- border width + border_width = 2, +-- graph borders +-- draw_graph_borders yes +-- default_graph_size 15 40 -# MISC +-- MISC -# Boolean value, if true, Conky will be forked to background when started. -background yes +-- Boolean value, if true, Conky will be forked to background when started. + background = true, -# Adds spaces around certain objects to stop them from moving other things -# around, this only helps if you are using a mono font -# Options: right, left or none -use_spacer none +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', -# Subtract (file system) buffers from used memory? -no_buffers yes +-- Subtract (file system) buffers from used memory? + no_buffers = true, -# Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use -# $image lots. Set to 0 to disable the image cache. -imlib_cache_size 0 +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, -# Use the Xdbe extension? (eliminates flicker) -# It is highly recommended to use own window with this one -# so double buffer won't be so big. -double_buffer yes +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, -update_interval 1 + update_interval = 1, -TEXT +}; + +conky.text = [[ ${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}menedżer plików ${alignr}${color}super+f @@ -114,3 +117,4 @@ ${color2} - 1/4 ekranu ${alignr} ${color}super+numeryczna[1..9] ${color}PULPITY${voffset -6} ${color2}${hr 1}${voffset -4} ${color2}przejdź na pulpit ${alignr} ${color}super+[F1..F4] +]];