volumettf icons fix, conkies
parent
deb1011b2a
commit
4d2781fea2
|
@ -6,20 +6,20 @@ vol=$(LANG=C pactl list sinks | awk '/Volume:/ {printf "%s ",$5}' | cut -f1 -d '
|
|||
|
||||
if [[ $muted = "no" ]]; then
|
||||
if [[ $vol -ge 80 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
elif [[ $vol -ge 70 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
elif [[ $vol -ge 60 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
elif [[ $vol -ge 50 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
elif [[ $vol -ge 30 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
elif [[ $vol -ge 10 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
elif [[ $vol -ge 0 ]]; then
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
echo "<sup><span size='xx-small'> $vol%</span></sup>"
|
||||
fi
|
||||
else
|
||||
echo "<sub><span size='xx-small'> $vol%</span></sub>"
|
||||
echo "<sub><span size='xx-small'> $vol%</span></sub>"
|
||||
fi
|
||||
|
|
|
@ -1,121 +0,0 @@
|
|||
conky.config = {
|
||||
-- For commands above TEXT check:
|
||||
-- http://conky.sourceforge.net/config_settings.html
|
||||
|
||||
-- For commands available below TEXT check:
|
||||
-- http://conky.sourceforge.net/variables.html
|
||||
|
||||
-- Bunsen Labs Conky help threads
|
||||
-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424
|
||||
|
||||
-- beta tested by: smacz
|
||||
-- Enjoy! :)
|
||||
|
||||
-- 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',
|
||||
|
||||
--## 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
|
||||
|
||||
--## 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
|
||||
|
||||
minimum_width = 320, minimum_height = 80,--## w|h
|
||||
--maximum_width 180
|
||||
|
||||
gap_x = -100,--## l|r
|
||||
gap_y = -113,--## u|d
|
||||
|
||||
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 = true,
|
||||
|
||||
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 = 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${image $HOME/.config/conky/images/mabox.png}
|
||||
]];
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_blue.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_blue.conkyrc & sleep 1s
|
|
@ -0,0 +1,73 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Simple Clock and Date',
|
||||
|
||||
alignment = 'top_middle',
|
||||
gap_x = 0,
|
||||
gap_y = 60,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
short_units = true,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${voffset -10}${color0}${font Cantarell:pixelsize=120}${time %H:%M}${font}${voffset -84}${offset 10}${color1}${font Cantarell:pixelsize=42}${time %d} ${voffset -15}${color0}${font Cantarell:pixelsize=22}${time %B} ${time %Y}${font}${voffset 24}${font Cantarell:pixelsize=58}${offset -148}${time %A}${font}
|
||||
${voffset 10}${offset 12}${font Cantarell:pixelsize=14}${color1}HD ${offset 9}$color${fs_free /} / ${fs_size /}${offset 30}${color1}RAM ${offset 9}$color$mem / $memmax${offset 30}${color1}CPU ${offset 9}$color${cpu cpu0}%
|
||||
|
||||
|
||||
|
||||
]];
|
||||
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Simple Clock',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 30,
|
||||
gap_y = 360,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
short_units = true,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
|
||||
${font Ubuntu:size=100:bold}${color1}${time %k:%M}${font}
|
||||
${voffset 20}${alignr}${color} $cpu% $legacymem
|
||||
]];
|
||||
|
||||
|
|
@ -1,61 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
|
||||
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 Colors Conky',
|
||||
|
||||
-- own_window_argb_visual yes # Options: yes or no
|
||||
|
||||
|
||||
minimum_width = 480, minimum_height = 50,--## w|h
|
||||
--maximum_width 180
|
||||
|
||||
gap_x = -100,--## l|r
|
||||
gap_y = -113,--## u|d
|
||||
|
||||
alignment = 'bottom_right',
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Monospace:bold:size=9',
|
||||
--xftfont Fantasque Sans Mono:bold:size=9
|
||||
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
uppercase = false,
|
||||
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#000000',
|
||||
|
||||
default_color = '#C0C0C0',-- Silver
|
||||
draw_borders = false,--yes
|
||||
stippled_borders = 5,
|
||||
-- border margins
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
-- border width
|
||||
border_width = 2,
|
||||
background = true,
|
||||
|
||||
use_spacer = 'none',
|
||||
|
||||
no_buffers = true,
|
||||
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${image $HOME/.config/conky/images/colors-colorize.png}
|
||||
]];
|
|
@ -1,2 +1,4 @@
|
|||
conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/logo_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/mabox_tools_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/shortcuts_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/sysinfo_mbcolor.conkyrc & sleep .5
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_green.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_green.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_grey.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_gruvbox.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_gruvbox.conkyrc & sleep 1s
|
|
@ -0,0 +1,70 @@
|
|||
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 = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Logo',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_height = 220,
|
||||
minimum_width = 220,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#fbfdfd',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = false,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${image $HOME/.config/conky/images/mabox_3d.png -s 220x220}
|
||||
${voffset 200}${color0}${alignc}M A B O X L I N U X
|
||||
]];
|
||||
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Tools Conky',
|
||||
|
||||
alignment = 'bottom_left',
|
||||
gap_x = 260,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Main menu ${alignr}${color}super / super+spacebar
|
||||
${color0}Settings menu ${alignr} ${color}super+s
|
||||
${color0}Left ${alignr} ${color}ctrl+super+left
|
||||
${color0}Right ${alignr} ${color}ctrl+super+right
|
||||
${color0}Places ${alignr} ${color}super+.
|
||||
${color}CONFIG MENUS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Tint2 ${alignr}${color}super+alt+p
|
||||
${color0}Conky ${alignr}${color}super+alt+k
|
||||
${color0}Menu/Panels ${alignr}${color}super+alt+m
|
||||
${color0}Wallpaper ${alignr}${color}super+alt+w
|
||||
${color0}ScreenLocker ${alignr}${color}super+alt+l
|
||||
${color}Mabox Linux Tools ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Command Palette ${alignr}${color}super+F1
|
||||
${color0}Colorizer ${alignr}${color}super+alt+o
|
||||
${color0}Color Menu ${alignr}${color}super+alt+c
|
||||
${color0}Espanso - text expander ${alignr}${color}super+alt+e
|
||||
${color0}Exit dialog ${alignr}${color}super+x
|
||||
${color0}Screenshot tool ${alignr}${color}super+PrtScr
|
||||
]];
|
||||
|
||||
|
|
@ -1,88 +0,0 @@
|
|||
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 = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
|
||||
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#333333',
|
||||
|
||||
|
||||
color2 = '#2ECC71',
|
||||
color3 = '#db6823',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#CCCCCC',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
|
||||
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$mem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$mem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_nordic.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_nordic.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_pink.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_pink.conkyrc & sleep 1s
|
|
@ -0,0 +1,68 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Tools Conky',
|
||||
|
||||
alignment = 'bottom_middle',
|
||||
gap_x = 0,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${execpi 1800 quote.sh}
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_red.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_red.conkyrc & sleep 1s
|
|
@ -1,8 +0,0 @@
|
|||
~/.config/conky/grey
|
||||
~/.config/conky/green
|
||||
~/.config/conky/gruvbox
|
||||
~/.config/conky/yellow
|
||||
~/.config/conky/blue
|
||||
~/.config/conky/nordic
|
||||
~/.config/conky/pink
|
||||
~/.config/conky/red
|
|
@ -1,103 +0,0 @@
|
|||
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 Colorize',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#847D50',
|
||||
color2 = '#e0ddc7',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}grow/move ${alignr} ${color}super+alt+arrows
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,102 +0,0 @@
|
|||
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 Dracula',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#8be9fd',
|
||||
color2 = '#6272a4',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,104 +0,0 @@
|
|||
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 Green',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#70b433',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,113 +0,0 @@
|
|||
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 Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#778899',
|
||||
color3 = '#9ACD32',-- YellowGreen
|
||||
color4 = '#FFA07A',-- LightSalmon
|
||||
color5 = '#FFDEAD',-- NavajoWhite
|
||||
color6 = '#00BFFF',-- DeepSkyBlue
|
||||
color7 = '#5F9EA0',-- CadetBlue
|
||||
color8 = '#BDB76B',-- DarkKhaki
|
||||
color9 = '#CD5C5C',-- IndianRed
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
||||
|
||||
|
|
@ -1,102 +0,0 @@
|
|||
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 Gruvbox',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#89b482',
|
||||
color2 = '#d8a657',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal/quake ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -0,0 +1,94 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Shortcuts Conky',
|
||||
|
||||
alignment = 'bottom_left',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color0}super = windows key${voffset -8}
|
||||
${color0}${hr 1}${voffset -4}
|
||||
${color0}terminal ${alignr}${color}super+t
|
||||
${color0}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color0}file manager ${alignr}${color}super+f
|
||||
${color0}web browser ${alignr}${color}super+w
|
||||
${color0}text editor ${alignr}${color}super+e
|
||||
${color0}file search ${alignr}${color}super+/
|
||||
${color0}galculator ${alignr}${color}super+g
|
||||
${color0}internet radio ${alignr}${color}super+r
|
||||
${color0}volume control ${alignr}${color}super+v
|
||||
${color0}toggle Picom ${alignr}${color}super+p
|
||||
${color0}toggle Conky ${alignr}${color}super+c
|
||||
${color0}lock screen ${alignr}${color}super+l
|
||||
${color0}exit ${alignr}${color}super+x
|
||||
${color}WINDOWS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}close ${alignr} ${color}alt+F4
|
||||
${color0}iconify ${alignr} ${color}alt+F5
|
||||
${color0}maximize ${alignr} ${color}alt+F6
|
||||
${color0}show desktop ${alignr} ${color}super+d
|
||||
${color0}un/decorate ${alignr} ${color}super+b
|
||||
${color0}toggle fullscreen ${alignr} ${color}F11
|
||||
${color}windows placement:
|
||||
${color0} - half screen ${alignr} ${color}super+arrows
|
||||
${color0} - 1/4 screen ${alignr} ${color}super+numpad[1..9]
|
||||
${color}DESKTOPS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}go to desktop ${alignr} ${color}super+[1..4]
|
||||
]];
|
||||
|
||||
|
|
@ -1,102 +0,0 @@
|
|||
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 Gruvbox',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#d8dee9',
|
||||
color2 = '#4c566a',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,106 +0,0 @@
|
|||
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 Red',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#ff81ca',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
||||
|
||||
|
|
@ -1,121 +0,0 @@
|
|||
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
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
--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 = 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
||||
|
||||
|
|
@ -1,104 +0,0 @@
|
|||
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 Red',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#111111',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#ff5e56',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
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 Yellow',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#efc541',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color2}super = windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}file manager ${alignr}${color}super+f
|
||||
${color2}web browser ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}volume control ${alignr}${color}super+v
|
||||
${color2}toggle Picom ${alignr}${color}super+p
|
||||
${color2}toggle Conky ${alignr}${color}super+alt+c
|
||||
${color2}lock screen ${alignr}${color}super+l
|
||||
${color2}exit ${alignr}${color}super+x
|
||||
${color}SIDEPANELS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Left ${alignr} ${color}ctrl+super+left
|
||||
${color2}Right ${alignr} ${color}ctrl+super+right
|
||||
${color2}Places ${alignr} ${color}super+.
|
||||
${color2}Settings menu ${alignr} ${color}super+s
|
||||
${color}WINDOWS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}close ${alignr} ${color}alt+F4
|
||||
${color2}iconify ${alignr} ${color}alt+F5
|
||||
${color2}maximize ${alignr} ${color}alt+F6
|
||||
${color2}show desktop ${alignr} ${color}super+d
|
||||
${color2}un/decorate ${alignr} ${color}super+b
|
||||
${color2}toggle fullscreen ${alignr} ${color}F11
|
||||
${color2}windows placement:
|
||||
${color2} - half screen ${alignr} ${color}super+arrows
|
||||
${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+[1..4]
|
||||
]];
|
||||
|
||||
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Blue',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#368aeb',
|
||||
color3 = '#efc541',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,84 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = true,
|
||||
--own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
||||
--own_window_argb_visual = true,
|
||||
--own_window_argb_value = 228,
|
||||
own_window_colour = '#162c27',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Monitor Conky Grey',
|
||||
|
||||
-- gap_x = 15,
|
||||
gap_x = 15,
|
||||
gap_y = 40,
|
||||
alignment = 'top_right',
|
||||
--minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
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 = '#222222',
|
||||
|
||||
color2 = '#847D50',
|
||||
color3 = '#CDC76D',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#e0ddc7',
|
||||
|
||||
draw_borders = no,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 0,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,88 +0,0 @@
|
|||
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 Cyberpunk Monitor Conky',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
|
||||
|
||||
|
||||
use_xft = true,
|
||||
font = 'JetBrains Mono Regular:size=8',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
|
||||
color2 = '#800080',
|
||||
color3 = '#0F2856',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#0ABDC6',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${voffset 8}$color${font JetBrains Mono Regular:size=14}${time %A}$font${voffset -18}$alignr${color3}${font JetBrains Mono Regular:size=36}${time %e}$font
|
||||
$color${voffset -20}$color${font JetBrains Mono Regular:size=16}${time %B}$font${voffset -1} $color${font JetBrains Mono Regular:size=18}${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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font JetBrains Mono Regular:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${alignr}arch ${color}${machine}
|
||||
${alignr}${color2}${alignr}filesystem ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} available updates ${color3}${font JetBrains Mono Regular: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}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
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 = '#222222',
|
||||
|
||||
color2 = '#6272a4',
|
||||
color3 = '#ff79c6',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#8be9fd',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -0,0 +1,86 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Sysinfo Graph Conky',
|
||||
|
||||
alignment = 'top_right',
|
||||
gap_x = 260,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
|
||||
draw_shades = false,
|
||||
default_shade_color = '#222222',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
color2 = '#61c4bc',
|
||||
cpu_avg_samples = 2,
|
||||
|
||||
|
||||
draw_borders = true,
|
||||
stippled_borders = 3,
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
border_width = 1,
|
||||
draw_graph_borders = true,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
short_units = true,
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
$color${font Cantarell:size=16}${time %A}$font\
|
||||
${voffset -20}$alignr$color1${font Cantarell:size=38}${time %e}$font
|
||||
$color${voffset -20}$color1${font Cantarell:size=18}${time %b}$font\
|
||||
${voffset -3} $color${font Cantarell:size=20} ${time %Y}$font
|
||||
${voffset 10}${goto 20}${color} CPU$alignr$cpu% ${voffset -24}
|
||||
$color2$alignr${cpugraph 50,190 -l -t}${voffset -6}
|
||||
${goto 18}$font$color0${top name 1}${alignr 4}$color${top cpu 1}%
|
||||
${goto 18}$color0${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 18}$color0${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 18}$color0${top name 4}$alignr$color${top cpu 4}%
|
||||
${goto 18}$color0${top name 5}$alignr$color${top cpu 5}%
|
||||
#
|
||||
${voffset 10}${goto 20}${color} RAM${alignr 4}$legacymem / $memmax ${voffset -24}
|
||||
$color2$alignr${memgraph 50,190 -l -t}${voffset -6}
|
||||
${goto 18}$color0${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 18}$color0${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 18}$color0${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 18}$color0${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
${goto 18}$color0${top_mem name 5}$alignr$color${top_mem mem_res 5}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color0}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color0}$legacymem - $memmax
|
||||
#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
$alignr${execi 10000 whoami}@${nodename}
|
||||
${alignr}${color0}uptime ${color}${uptime_short}
|
||||
${alignr}${color0}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color0}${alignr}arch ${color}${machine}
|
||||
${alignr}${color0}${alignr}filesystem ${color}${fs_type}${voffset 10}
|
||||
${alignr}${color}${execpi 1800 checkupdates.sh -g}${font}${color}
|
||||
#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} branch: ${color0}${execi 10000 pacman-mirrors -G}
|
||||
${voffset -50}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Green',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#70b433',
|
||||
color3 = '#efc541',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
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 = '#222222',
|
||||
|
||||
color2 = '#778899',
|
||||
color3 = '#006600',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
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 = '#222222',
|
||||
|
||||
color2 = '#d8a657',
|
||||
color3 = '#ea6962',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#89b482',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -0,0 +1,84 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Sysinfo Bar Conky',
|
||||
|
||||
alignment = 'top_right',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
|
||||
draw_shades = false,
|
||||
default_shade_color = '#222222',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
color2 = '#61c4bc',
|
||||
cpu_avg_samples = 2,
|
||||
|
||||
|
||||
draw_borders = true,
|
||||
stippled_borders = 3,
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
border_width = 1,
|
||||
draw_graph_borders = true,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
short_units = true,
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
$color${font Cantarell:size=16}${time %A}$font\
|
||||
${voffset -20}$alignr$color1${font Cantarell:size=38}${time %e}$font
|
||||
$color${voffset -20}$color1${font Cantarell:size=18}${time %b}$font\
|
||||
${voffset -3} $color${font Cantarell:size=20} ${time %Y}$font
|
||||
${goto 18}${color}CPU$alignr$cpu%
|
||||
${voffset -2}$color2$alignr${cpubar 4,190 -l -t}${voffset -2}
|
||||
${goto 18}$font$color0${top name 1}${alignr}$color${top cpu 1}%
|
||||
${goto 18}$color0${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 18}$color0${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 18}$color0${top name 4}$alignr$color${top cpu 4}%
|
||||
${goto 18}$color0${top name 5}$alignr$color${top cpu 5}%
|
||||
#
|
||||
${voffset 8}${goto 18}${color}RAM${alignr}$legacymem / $memmax
|
||||
${voffset -2}$color2$alignr${membar 4,190 -l -t}${voffset -2}
|
||||
${goto 18}$color0${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 18}$color0${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 18}$color0${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 18}$color0${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
${goto 18}$color0${top_mem name 5}$alignr$color${top_mem mem_res 5}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color0}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color0}$legacymem - $memmax
|
||||
#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
$alignr${execi 10000 whoami}@${nodename}
|
||||
${alignr}${color0}uptime ${color}${uptime_short}
|
||||
${alignr}${color0}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color0}${alignr}arch ${color}${machine}
|
||||
${alignr}${color0}${alignr}filesystem ${color}${fs_type}${voffset 10}
|
||||
${alignr}${color}${execpi 1800 checkupdates.sh -s}${font}${color}
|
||||
${alignr}${color} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} branch: ${color0}${execi 10000 pacman-mirrors -G}
|
||||
${voffset -50}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
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 = '#222222',
|
||||
|
||||
color2 = '#4c566a',
|
||||
color3 = '#bf616a',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#d8dee9',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Pink',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#ff81ca',
|
||||
color3 = '#368aeb',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,88 +0,0 @@
|
|||
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 = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
|
||||
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
|
||||
color2 = '#f6cb33',
|
||||
color3 = '#5e0b0b',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#CCCCCC',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
|
||||
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Red',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#111111',
|
||||
|
||||
color2 = '#ff5e56',
|
||||
color3 = '#70b433',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -1,80 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Yellow',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#efc541',
|
||||
color3 = '#ff0000',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
|
||||
${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}
|
||||
]];
|
|
@ -0,0 +1,84 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Terminator Conky',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 300,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}TILING TERMINAL WORKFLOW
|
||||
${color}RUN ${color0}${hr 1}
|
||||
${voffset -2}${color0}terminal ${alignr}${color}super+t
|
||||
${color0}quake-terminal (show/hide) ${alignr}${color}ctrl+~
|
||||
${color}SPLIT ${color0}${hr 1}
|
||||
${voffset -2}${color0}horizontally ${alignr}${color}ctrl+shift+o
|
||||
${color0}vertically ${alignr}${color}ctrl+shift+e
|
||||
${color}USEFULL ACTIONS ${color0}${hr 1}
|
||||
${voffset -2}${color0}change focus${alignr}${color}alt+arrows
|
||||
${color0}resize active ${alignr}${color}ctrl+shift+arrows
|
||||
${color0}zoom active terminal ${alignr}${color}ctrl+shift+x
|
||||
${color0}fullscreen ${alignr}${color}super+enter,F11
|
||||
${color0}close terminal ${alignr}${color}ctrl+shift+w
|
||||
${color}FONT SIZE ${color0}${hr 1}${voffset -2}
|
||||
${color0}increase ${alignr}${alignr}${color}ctrl++
|
||||
${color0}decrease ${alignr}${color}ctrl+-
|
||||
${color0}reset ${alignr}${color}ctrl+0
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_yellow.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_yellow.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_blue.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_blue.conkyrc & sleep 1s
|
|
@ -0,0 +1,73 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Simple Clock and Date',
|
||||
|
||||
alignment = 'top_middle',
|
||||
gap_x = 0,
|
||||
gap_y = 60,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
short_units = true,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${voffset -10}${color0}${font Cantarell:pixelsize=120}${time %H:%M}${font}${voffset -84}${offset 10}${color1}${font Cantarell:pixelsize=42}${time %d} ${voffset -15}${color0}${font Cantarell:pixelsize=22}${time %B} ${time %Y}${font}${voffset 24}${font Cantarell:pixelsize=58}${offset -148}${time %A}${font}
|
||||
${voffset 10}${offset 12}${font Cantarell:pixelsize=14}${color1}HD ${offset 9}$color${fs_free /} / ${fs_size /}${offset 30}${color1}RAM ${offset 9}$color$mem / $memmax${offset 30}${color1}CPU ${offset 9}$color${cpu cpu0}%
|
||||
|
||||
|
||||
|
||||
]];
|
||||
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Simple Clock',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 30,
|
||||
gap_y = 360,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
short_units = true,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
|
||||
${font Ubuntu:size=100:bold}${color1}${time %k:%M}${font}
|
||||
${voffset 20}${alignr}${color} $cpu% $legacymem
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +1,4 @@
|
|||
conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/logo_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/mabox_tools_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/shortcuts_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/sysinfo_mbcolor.conkyrc & sleep .5
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_green.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_green.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_grey.conkyrc & sleep 1s
|
|
@ -0,0 +1,70 @@
|
|||
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 = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Logo',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_height = 220,
|
||||
minimum_width = 220,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#fbfdfd',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = false,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${image $HOME/.config/conky/images/mabox_3d.png -s 220x220}
|
||||
${voffset 200}${color0}${alignc}M A B O X L I N U X
|
||||
]];
|
||||
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Tools Conky',
|
||||
|
||||
alignment = 'bottom_left',
|
||||
gap_x = 260,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Main menu ${alignr}${color}super / super+spacebar
|
||||
${color0}Settings menu ${alignr} ${color}super+s
|
||||
${color0}Left ${alignr} ${color}ctrl+super+left
|
||||
${color0}Right ${alignr} ${color}ctrl+super+right
|
||||
${color0}Places ${alignr} ${color}super+.
|
||||
${color}CONFIG MENUS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Tint2 ${alignr}${color}super+alt+p
|
||||
${color0}Conky ${alignr}${color}super+alt+k
|
||||
${color0}Menu/Panels ${alignr}${color}super+alt+m
|
||||
${color0}Wallpaper ${alignr}${color}super+alt+w
|
||||
${color0}ScreenLocker ${alignr}${color}super+alt+l
|
||||
${color}Mabox Linux Tools ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Command Palette ${alignr}${color}super+F1
|
||||
${color0}Colorizer ${alignr}${color}super+alt+o
|
||||
${color0}Color Menu ${alignr}${color}super+alt+c
|
||||
${color0}Espanso - text expander ${alignr}${color}super+alt+e
|
||||
${color0}Exit dialog ${alignr}${color}super+x
|
||||
${color0}Screenshot tool ${alignr}${color}super+PrtScr
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_pink.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_pink.conkyrc & sleep 1s
|
|
@ -0,0 +1,68 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Tools Conky',
|
||||
|
||||
alignment = 'bottom_middle',
|
||||
gap_x = 0,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${execpi 1800 quote.sh}
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_red.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_red.conkyrc & sleep 1s
|
|
@ -1,6 +0,0 @@
|
|||
~/.config/conky/grey
|
||||
~/.config/conky/green
|
||||
~/.config/conky/yellow
|
||||
~/.config/conky/blue
|
||||
~/.config/conky/pink
|
||||
~/.config/conky/red
|
|
@ -1,106 +0,0 @@
|
|||
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 Blue',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#368aeb',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -1,106 +0,0 @@
|
|||
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 Green',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#70b433',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -1,106 +0,0 @@
|
|||
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 Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#778899',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -0,0 +1,94 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Shortcuts Conky',
|
||||
|
||||
alignment = 'bottom_left',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}RUN${alignr}${color0}super = windows key${voffset -8}
|
||||
${color0}${hr 1}${voffset -4}
|
||||
${color0}terminal ${alignr}${color}super+t
|
||||
${color0}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color0}file manager ${alignr}${color}super+f
|
||||
${color0}web browser ${alignr}${color}super+w
|
||||
${color0}text editor ${alignr}${color}super+e
|
||||
${color0}file search ${alignr}${color}super+/
|
||||
${color0}galculator ${alignr}${color}super+g
|
||||
${color0}internet radio ${alignr}${color}super+r
|
||||
${color0}volume control ${alignr}${color}super+v
|
||||
${color0}toggle Picom ${alignr}${color}super+p
|
||||
${color0}toggle Conky ${alignr}${color}super+c
|
||||
${color0}lock screen ${alignr}${color}super+l
|
||||
${color0}exit ${alignr}${color}super+x
|
||||
${color}WINDOWS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}close ${alignr} ${color}alt+F4
|
||||
${color0}iconify ${alignr} ${color}alt+F5
|
||||
${color0}maximize ${alignr} ${color}alt+F6
|
||||
${color0}show desktop ${alignr} ${color}super+d
|
||||
${color0}un/decorate ${alignr} ${color}super+b
|
||||
${color0}toggle fullscreen ${alignr} ${color}F11
|
||||
${color}windows placement:
|
||||
${color0} - half screen ${alignr} ${color}super+arrows
|
||||
${color0} - 1/4 screen ${alignr} ${color}super+numpad[1..9]
|
||||
${color}DESKTOPS ${color0} ${hr 1}${voffset -2}
|
||||
${color0}go to desktop ${alignr} ${color}super+[1..4]
|
||||
]];
|
||||
|
||||
|
|
@ -1,106 +0,0 @@
|
|||
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 Pink',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#111111',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#ff81ca',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -1,120 +0,0 @@
|
|||
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
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
--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 = 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -1,106 +0,0 @@
|
|||
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 Red',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#111111',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#ff5e56',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -1,106 +0,0 @@
|
|||
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 Yellow',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#efc541',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}EJECUTAR${alignr}${color2}super = tecla windows ${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}gestor archivos ${alignr}${color}super+f
|
||||
${color2}menu ${alignr}${color}super / super+spacebar
|
||||
${color2}ejecutar app... ${alignr}${color}super+m / alt+F2
|
||||
${color2}navegador ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}control volumen ${alignr}${color}super+v
|
||||
${color2}activa/desact Picom ${alignr}${color}super+p
|
||||
${color2}bloquear pantalla ${alignr}${color}super+l
|
||||
${color2}terminar proceso ${alignr}${color}super+k
|
||||
${color2}salir ${alignr}${color}super+x
|
||||
${color}PANELES LATERALES${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}lugares (izquierda) ${alignr} ${color}ctrl+super+left
|
||||
${color2}ajustes (derecha) ${alignr} ${color}ctrl+super+right
|
||||
${color2}settings menu ${alignr} ${color}super+s
|
||||
${color}VENTANAS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}cerrar ${alignr} ${color}alt+F4
|
||||
${color2}minimizar en panel ${alignr} ${color}alt+F5
|
||||
${color2}maximizar ${alignr} ${color}alt+F6
|
||||
${color2}reducir ${alignr} ${color}alt+esc
|
||||
${color2}mostrar escritorio ${alignr} ${color}super+d
|
||||
${color2}quitar barra sup ${alignr} ${color}super+b
|
||||
${color2}activar pantalla completa ${alignr} ${color}F11
|
||||
${color2}aumentar/mover ${alignr} ${color}super+alt+arrows
|
||||
${color2}Posicionar ventanas:
|
||||
${color2} - 1/2 pantalla ${alignr} ${color}super+arrows
|
||||
${color2} - 1/4 pantalla ${alignr} ${color}super+numpad[1..9]
|
||||
${color}ESCRITORIOS${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}navegar escritorios ${alignr} ${color}super+[1..4]
|
||||
]];
|
|
@ -1,79 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Blue',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#368aeb',
|
||||
color3 = '#efc541',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -1,88 +0,0 @@
|
|||
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 = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
|
||||
|
||||
|
||||
use_xft = true,
|
||||
font = 'JetBrains Mono Regular:size=8',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
|
||||
color2 = '#800080',
|
||||
color3 = '#0F2856',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#0ABDC6',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${voffset 8}$color${font JetBrains Mono Regular:size=14}${time %A}$font${voffset -18}$alignr${color3}${font JetBrains Mono Regular:size=36}${time %e}$font
|
||||
$color${voffset -20}$color${font JetBrains Mono Regular:size=16}${time %B}$font${voffset -1} $color${font JetBrains Mono Regular:size=18}${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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}${alignr}disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font JetBrains Mono Regular:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font JetBrains Mono Regular:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} installed paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -0,0 +1,86 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Sysinfo Graph Conky',
|
||||
|
||||
alignment = 'top_right',
|
||||
gap_x = 260,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
|
||||
draw_shades = false,
|
||||
default_shade_color = '#222222',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
color2 = '#61c4bc',
|
||||
cpu_avg_samples = 2,
|
||||
|
||||
|
||||
draw_borders = true,
|
||||
stippled_borders = 3,
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
border_width = 1,
|
||||
draw_graph_borders = true,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
short_units = true,
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
$color${font Cantarell:size=16}${time %A}$font\
|
||||
${voffset -20}$alignr$color1${font Cantarell:size=38}${time %e}$font
|
||||
$color${voffset -20}$color1${font Cantarell:size=18}${time %b}$font\
|
||||
${voffset -3} $color${font Cantarell:size=20} ${time %Y}$font
|
||||
${voffset 10}${goto 20}${color} CPU$alignr$cpu% ${voffset -24}
|
||||
$color2$alignr${cpugraph 50,190 -l -t}${voffset -6}
|
||||
${goto 18}$font$color0${top name 1}${alignr 4}$color${top cpu 1}%
|
||||
${goto 18}$color0${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 18}$color0${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 18}$color0${top name 4}$alignr$color${top cpu 4}%
|
||||
${goto 18}$color0${top name 5}$alignr$color${top cpu 5}%
|
||||
#
|
||||
${voffset 10}${goto 20}${color} RAM${alignr 4}$legacymem / $memmax ${voffset -24}
|
||||
$color2$alignr${memgraph 50,190 -l -t}${voffset -6}
|
||||
${goto 18}$color0${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 18}$color0${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 18}$color0${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 18}$color0${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
${goto 18}$color0${top_mem name 5}$alignr$color${top_mem mem_res 5}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color0}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color0}$legacymem - $memmax
|
||||
#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
$alignr${execi 10000 whoami}@${nodename}
|
||||
${alignr}${color0}uptime ${color}${uptime_short}
|
||||
${alignr}${color0}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color0}${alignr}arch ${color}${machine}
|
||||
${alignr}${color0}${alignr}filesystem ${color}${fs_type}${voffset 10}
|
||||
${alignr}${color}${execpi 1800 checkupdates.sh -g}${font}${color}
|
||||
#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} branch: ${color0}${execi 10000 pacman-mirrors -G}
|
||||
${voffset -50}
|
||||
]];
|
|
@ -1,79 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Green',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#70b433',
|
||||
color3 = '#efc541',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -1,79 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
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 = '#222222',
|
||||
|
||||
color2 = '#778899',
|
||||
color3 = '#006600',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -0,0 +1,84 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Sysinfo Bar Conky',
|
||||
|
||||
alignment = 'top_right',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
|
||||
draw_shades = false,
|
||||
default_shade_color = '#222222',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
color2 = '#61c4bc',
|
||||
cpu_avg_samples = 2,
|
||||
|
||||
|
||||
draw_borders = true,
|
||||
stippled_borders = 3,
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
border_width = 1,
|
||||
draw_graph_borders = true,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
short_units = true,
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
$color${font Cantarell:size=16}${time %A}$font\
|
||||
${voffset -20}$alignr$color1${font Cantarell:size=38}${time %e}$font
|
||||
$color${voffset -20}$color1${font Cantarell:size=18}${time %b}$font\
|
||||
${voffset -3} $color${font Cantarell:size=20} ${time %Y}$font
|
||||
${goto 18}${color}CPU$alignr$cpu%
|
||||
${voffset -2}$color2$alignr${cpubar 4,190 -l -t}${voffset -2}
|
||||
${goto 18}$font$color0${top name 1}${alignr}$color${top cpu 1}%
|
||||
${goto 18}$color0${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 18}$color0${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 18}$color0${top name 4}$alignr$color${top cpu 4}%
|
||||
${goto 18}$color0${top name 5}$alignr$color${top cpu 5}%
|
||||
#
|
||||
${voffset 8}${goto 18}${color}RAM${alignr}$legacymem / $memmax
|
||||
${voffset -2}$color2$alignr${membar 4,190 -l -t}${voffset -2}
|
||||
${goto 18}$color0${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 18}$color0${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 18}$color0${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 18}$color0${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
${goto 18}$color0${top_mem name 5}$alignr$color${top_mem mem_res 5}
|
||||
#
|
||||
${voffset 10}$alignr disk ${color0}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memory ${color0}$legacymem - $memmax
|
||||
#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
$alignr${execi 10000 whoami}@${nodename}
|
||||
${alignr}${color0}uptime ${color}${uptime_short}
|
||||
${alignr}${color0}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color0}${alignr}arch ${color}${machine}
|
||||
${alignr}${color0}${alignr}filesystem ${color}${fs_type}${voffset 10}
|
||||
${alignr}${color}${execpi 1800 checkupdates.sh -s}${font}${color}
|
||||
${alignr}${color} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} branch: ${color0}${execi 10000 pacman-mirrors -G}
|
||||
${voffset -50}
|
||||
]];
|
|
@ -1,79 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Pink',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#ff81ca',
|
||||
color3 = '#368aeb',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -1,88 +0,0 @@
|
|||
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 = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
|
||||
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
|
||||
color2 = '#f6cb33',
|
||||
color3 = '#5e0b0b',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#CCCCCC',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
|
||||
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} installed paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -1,79 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Red',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#111111',
|
||||
|
||||
color2 = '#ff5e56',
|
||||
color3 = '#70b433',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -1,79 +0,0 @@
|
|||
conky.config = {
|
||||
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
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 Monitor Conky Yellow',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 50,
|
||||
alignment = 'top_right',
|
||||
minimum_width = '200',
|
||||
minimum_width = 200,
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
color2 = '#efc541',
|
||||
color3 = '#ff0000',
|
||||
cpu_avg_samples = 2,
|
||||
default_color = '#FFFFFF',
|
||||
|
||||
draw_borders = false,--yes
|
||||
|
||||
stippled_borders = 5,
|
||||
border_inner_margin = 5,
|
||||
border_outer_margin = 0,
|
||||
border_width = 2,
|
||||
|
||||
background = true,
|
||||
no_buffers = true,
|
||||
imlib_cache_size = 0,
|
||||
|
||||
double_buffer = true,
|
||||
update_interval = 1,
|
||||
};
|
||||
|
||||
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
|
||||
#
|
||||
${voffset 10}${goto 40}${color}CPU$alignr$cpu%
|
||||
$color2${goto 40}$alignr${cpubar 4,165}
|
||||
${voffset 5}${goto 40}$font$color2${top name 1}$alignr$color${top cpu 1}%
|
||||
${goto 40}$color2${top name 2}$alignr$color${top cpu 2}%
|
||||
${goto 40}$color2${top name 3}$alignr$color${top cpu 3}%
|
||||
${goto 40}$color2${top name 4}$alignr$color${top cpu 4}%
|
||||
#
|
||||
${voffset 10}${goto 40}${color}RAM$alignr$legacymem/$memmax
|
||||
$color2${goto 40}$alignr${membar 4,165}
|
||||
${goto 40}${voffset 5}$color2${top_mem name 1}$alignr$color${top_mem mem_res 1}
|
||||
${goto 40}$color2${top_mem name 2}$alignr$color${top_mem mem_res 2}
|
||||
${goto 40}$color2${top_mem name 3}$alignr$color${top_mem mem_res 3}
|
||||
${goto 40}$color2${top_mem name 4}$alignr$color${top_mem mem_res 4}
|
||||
#
|
||||
${voffset 10}$alignr disco usado ${color2}${fs_used /} - ${fs_size /}
|
||||
$alignr$color memoria cargada ${color2}$legacymem - $memmax
|
||||
#${alignr}${color2}${font Cantarell:size=9}swap $swapmax - $swap
|
||||
#
|
||||
${voffset 10}$alignr${color} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release}
|
||||
#
|
||||
${voffset 10}$alignr${execi 1200 whoami}@${nodename}
|
||||
${alignr}${color2}${font Cantarell:size=9}tiempo de uso ${color}${uptime_short}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}kernel ${color}${kernel}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}arquitectura ${color}${machine}
|
||||
${alignr}${color2}${font Cantarell:size=9}${alignr}sistema de archivos ${color}${fs_type}
|
||||
${voffset 10}${alignr}${color} actualizaciones ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color}
|
||||
${alignr}${color} paquetes instalados: ${color2}${execi 10000 pacman -Q | wc -l}
|
||||
${alignr}${color} rama: ${color2}${execi 10000 pacman-mirrors -G}
|
||||
]];
|
|
@ -0,0 +1,84 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Terminator Conky',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 300,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}TILING TERMINAL WORKFLOW
|
||||
${color}RUN ${color0}${hr 1}
|
||||
${voffset -2}${color0}terminal ${alignr}${color}super+t
|
||||
${color0}quake-terminal (show/hide) ${alignr}${color}ctrl+~
|
||||
${color}SPLIT ${color0}${hr 1}
|
||||
${voffset -2}${color0}horizontally ${alignr}${color}ctrl+shift+o
|
||||
${color0}vertically ${alignr}${color}ctrl+shift+e
|
||||
${color}USEFULL ACTIONS ${color0}${hr 1}
|
||||
${voffset -2}${color0}change focus${alignr}${color}alt+arrows
|
||||
${color0}resize active ${alignr}${color}ctrl+shift+arrows
|
||||
${color0}zoom active terminal ${alignr}${color}ctrl+shift+x
|
||||
${color0}fullscreen ${alignr}${color}super+enter,F11
|
||||
${color0}close terminal ${alignr}${color}ctrl+shift+w
|
||||
${color}FONT SIZE ${color0}${hr 1}${voffset -2}
|
||||
${color0}increase ${alignr}${alignr}${color}ctrl++
|
||||
${color0}decrease ${alignr}${color}ctrl+-
|
||||
${color0}reset ${alignr}${color}ctrl+0
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_yellow.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_yellow.conkyrc & sleep 1s
|
|
@ -1,121 +0,0 @@
|
|||
conky.config = {
|
||||
-- For commands above TEXT check:
|
||||
-- http://conky.sourceforge.net/config_settings.html
|
||||
|
||||
-- For commands available below TEXT check:
|
||||
-- http://conky.sourceforge.net/variables.html
|
||||
|
||||
-- Bunsen Labs Conky help threads
|
||||
-- http://crunchbang.org/forums/viewtopic.php?pid=371424#p371424
|
||||
|
||||
-- beta tested by: smacz
|
||||
-- Enjoy! :)
|
||||
|
||||
-- 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',
|
||||
|
||||
--## 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
|
||||
|
||||
--## 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
|
||||
|
||||
minimum_width = 320, minimum_height = 80,--## w|h
|
||||
--maximum_width 180
|
||||
|
||||
gap_x = -100,--## l|r
|
||||
gap_y = -113,--## u|d
|
||||
|
||||
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 = true,
|
||||
|
||||
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 = 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${image $HOME/.config/conky/images/mabox.png}
|
||||
]];
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_blue.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_blue.conkyrc & sleep 1s
|
|
@ -0,0 +1,73 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Simple Clock and Date',
|
||||
|
||||
alignment = 'top_middle',
|
||||
gap_x = 0,
|
||||
gap_y = 60,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
short_units = true,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${voffset -10}${color0}${font Cantarell:pixelsize=120}${time %H:%M}${font}${voffset -84}${offset 10}${color1}${font Cantarell:pixelsize=42}${time %d} ${voffset -15}${color0}${font Cantarell:pixelsize=22}${time %B} ${time %Y}${font}${voffset 24}${font Cantarell:pixelsize=58}${offset -148}${time %A}${font}
|
||||
${voffset 10}${offset 12}${font Cantarell:pixelsize=14}${color1}HD ${offset 9}$color${fs_free /} / ${fs_size /}${offset 30}${color1}RAM ${offset 9}$color$mem / $memmax${offset 30}${color1}CPU ${offset 9}$color${cpu cpu0}%
|
||||
|
||||
|
||||
|
||||
]];
|
||||
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Simple Clock',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 30,
|
||||
gap_y = 360,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
color1 = '#61c4bc',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
short_units = true,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
|
||||
${font Ubuntu:size=100:bold}${color1}${time %k:%M}${font}
|
||||
${voffset 20}${alignr}${color} $cpu% $legacymem
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +1,4 @@
|
|||
conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/logo_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/mabox_tools_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/shortcuts_mbcolor.conkyrc & sleep .5
|
||||
conky -c ~/.config/conky/sysinfo_mbcolor.conkyrc & sleep .5
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_green.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_green.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_grey.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_grey.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_gruvbox.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_gruvbox.conkyrc & sleep 1s
|
|
@ -0,0 +1,70 @@
|
|||
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 = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Logo',
|
||||
|
||||
alignment = 'bottom_right',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_height = 220,
|
||||
minimum_width = 220,
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#fbfdfd',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = false,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${image $HOME/.config/conky/images/mabox_3d.png -s 220x220}
|
||||
${voffset 200}${color0}${alignc}M A B O X L I N U X
|
||||
]];
|
||||
|
||||
|
|
@ -0,0 +1,86 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Tools Conky',
|
||||
|
||||
alignment = 'bottom_left',
|
||||
gap_x = 260,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Menu główne ${alignr}${color}super / super+spacebar
|
||||
${color0}Menu ustawień ${alignr} ${color}super+s
|
||||
${color0}Lewy panel ${alignr} ${color}ctrl+super+left
|
||||
${color0}Prway panel ${alignr} ${color}ctrl+super+right
|
||||
${color0}Miejsca ${alignr} ${color}super+.
|
||||
${color}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Tint2 ${alignr}${color}super+alt+p
|
||||
${color0}Conky ${alignr}${color}super+alt+k
|
||||
${color0}Menu/Panele ${alignr}${color}super+alt+m
|
||||
${color0}Tapeta ${alignr}${color}super+alt+w
|
||||
${color0}Blokada ekranu ${alignr}${color}super+alt+l
|
||||
${color}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2}
|
||||
${color0}Paleta Komend ${alignr}${color}super+F1
|
||||
${color0}Colorizer ${alignr}${color}super+alt+o
|
||||
${color0}Color Menu ${alignr}${color}super+alt+c
|
||||
${color0}Espanso - text expander ${alignr}${color}super+alt+e
|
||||
${color0}Dialog wylogowana ${alignr}${color}super+x
|
||||
${color0}Zrzuty ekranu ${alignr}${color}super+PrtScr
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_nordic.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_nordic.conkyrc & sleep 1s
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_pink.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_pink.conkyrc & sleep 1s
|
|
@ -0,0 +1,68 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Tools Conky',
|
||||
|
||||
alignment = 'bottom_middle',
|
||||
gap_x = 0,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${execpi 1800 quote.sh}
|
||||
]];
|
||||
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
conky -c ~/.config/conky/shortcuts_red.conkyrc & sleep 1s
|
||||
conky -c ~/.config/conky/sysinfo_red.conkyrc & sleep 1s
|
|
@ -1,8 +0,0 @@
|
|||
~/.config/conky/grey
|
||||
~/.config/conky/green
|
||||
~/.config/conky/gruvbox
|
||||
~/.config/conky/yellow
|
||||
~/.config/conky/blue
|
||||
~/.config/conky/nordic
|
||||
~/.config/conky/pink
|
||||
~/.config/conky/red
|
|
@ -1,104 +0,0 @@
|
|||
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 Blue',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#368aeb',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,103 +0,0 @@
|
|||
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 Colorize',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#847D50',
|
||||
color2 = '#e0ddc7',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,121 +0,0 @@
|
|||
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
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
--default_color 656667 # Waldorf original colour
|
||||
--default_color 7a7a7a # Flame & Bunsen Grey
|
||||
--default_color 929292 # Labs Grey
|
||||
--default_color C0C0C0 # Silver
|
||||
default_color = '#0ABDC6',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
--color2 D8BFD8 # Thistle
|
||||
color2 = '#800080',
|
||||
color3 = '#9ACD32',-- YellowGreen
|
||||
color4 = '#FFA07A',-- LightSalmon
|
||||
color5 = '#FFDEAD',-- NavajoWhite
|
||||
color6 = '#00BFFF',-- DeepSkyBlue
|
||||
color7 = '#5F9EA0',-- CadetBlue
|
||||
color8 = '#BDB76B',-- DarkKhaki
|
||||
color9 = '#CD5C5C',-- IndianRed
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,103 +0,0 @@
|
|||
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 Dracula',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#8be9fd',
|
||||
color2 = '#6272a4',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,103 +0,0 @@
|
|||
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 Green',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = true,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#70b433',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,104 +0,0 @@
|
|||
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 Grey',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#FFFFFF',
|
||||
color0 = '#B0E0E6',-- PowderBlue
|
||||
color1 = '#778899',-- LightSlateGray
|
||||
color2 = '#778899',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -1,103 +0,0 @@
|
|||
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 Gruvbox',
|
||||
|
||||
gap_x = 15,
|
||||
gap_y = 45,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
|
||||
use_xft = true,
|
||||
font = 'Cantarell:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,--yes
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#89b482',
|
||||
color2 = '#d8a657',
|
||||
|
||||
-- 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
|
||||
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}menu ${alignr}${color}super / super+spacja
|
||||
${color2}menedżer plików ${alignr}${color}super+f
|
||||
${color2}przeglądarka www ${alignr}${color}super+w
|
||||
${color2}terminal ${alignr}${color}super+t
|
||||
${color2}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color2}kontrola głośności ${alignr}${color}super+v
|
||||
${color2}wł/wył Picom ${alignr}${color}super+p
|
||||
${color2}wł/wył Conky ${alignr}${color}super+alt+c
|
||||
${color2}blokuj ekran ${alignr}${color}super+l
|
||||
${color2}wyjście ${alignr}${color}super+x
|
||||
${color}PANELE${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}Lewy ${alignr} ${color}ctrl+super+left
|
||||
${color2}Prawy ${alignr} ${color}ctrl+super+right
|
||||
${color2}Miejsca ${alignr} ${color}super+.
|
||||
${color2}Menu ustawień ${alignr} ${color}super+s
|
||||
${color}OKNA${voffset -6}
|
||||
${color2}${hr 1}${voffset -4}
|
||||
${color2}zamknij ${alignr} ${color}alt+F4
|
||||
${color2}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color2}maksymalizacja ${alignr} ${color}alt+F6
|
||||
${color2}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color2}wł/wył obramowanie ${alignr} ${color}super+b
|
||||
${color2}wł/wył pełny ekran ${alignr} ${color}F11 / super+ENTER
|
||||
${color2}powiększanie/przesuwanie ${alignr} ${color}super+alt+strzałki
|
||||
${color2}rozmieszczanie okien:
|
||||
${color2} - połowa ekranu ${alignr} ${color}super+strzałki
|
||||
${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+[1..4]
|
||||
]];
|
|
@ -0,0 +1,94 @@
|
|||
conky.config = {
|
||||
-- WINDOW
|
||||
own_window = true,
|
||||
own_window_type = 'desktop',
|
||||
own_window_transparent = false,
|
||||
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
|
||||
own_window_colour = '#142c2c',
|
||||
own_window_class = 'Conky',
|
||||
own_window_title = 'Mabox Shortcuts Conky',
|
||||
|
||||
alignment = 'bottom_left',
|
||||
gap_x = 30,
|
||||
gap_y = 60,
|
||||
minimum_width = '200',
|
||||
|
||||
-- FONTS
|
||||
use_xft = true,
|
||||
font = 'Ubuntu:size=9',
|
||||
xftalpha = 1,
|
||||
override_utf8_locale = true,
|
||||
|
||||
-- COLORS
|
||||
draw_shades = false,
|
||||
default_shade_color = '#000000',
|
||||
draw_outline = false,
|
||||
default_outline_color = '#222222',
|
||||
|
||||
default_color = '#309552',
|
||||
color0 = '#accdc7',
|
||||
|
||||
-- BORDERS
|
||||
draw_borders = true,
|
||||
-- Stippled borders?
|
||||
stippled_borders = 3,
|
||||
-- border margins
|
||||
border_inner_margin = 8,
|
||||
border_outer_margin = 8,
|
||||
-- border width
|
||||
border_width = 1,
|
||||
|
||||
-- MISC
|
||||
-- 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',
|
||||
|
||||
-- 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,
|
||||
|
||||
-- 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,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
${color}URUCHOM${alignr}${color0}super = windows key${voffset -8}
|
||||
${color0}${hr 1}${voffset -4}
|
||||
${color0}terminal ${alignr}${color}super+t
|
||||
${color0}quake-terminal ${alignr}${color}ctrl+~
|
||||
${color0}fmenadżer plików ${alignr}${color}super+f
|
||||
${color0}przeglądarka www ${alignr}${color}super+w
|
||||
${color0}edytor tekstu ${alignr}${color}super+e
|
||||
${color0}wyszukiwanie plików ${alignr}${color}super+/
|
||||
${color0}galculator ${alignr}${color}super+g
|
||||
${color0}radio internetowe ${alignr}${color}super+r
|
||||
${color0}ustawienia głośności ${alignr}${color}super+v
|
||||
${color0}przełącz Picom ${alignr}${color}super+p
|
||||
${color0}przełącz Conky ${alignr}${color}super+c
|
||||
${color0}blokada ekranu ${alignr}${color}super+l
|
||||
${color0}wyjście ${alignr}${color}super+x
|
||||
${color}OKNA ${color0} ${hr 1}${voffset -2}
|
||||
${color0}zamknij ${alignr} ${color}alt+F4
|
||||
${color0}minimalizuj ${alignr} ${color}alt+F5
|
||||
${color0}maksymalizuj ${alignr} ${color}alt+F6
|
||||
${color0}pokaż pulpit ${alignr} ${color}super+d
|
||||
${color0}wł/wył dekorcje okien ${alignr} ${color}super+b
|
||||
${color0}pełny ekran ${alignr} ${color}F11
|
||||
${color}rozmieszczanie okien:
|
||||
${color0} - połowa ekranu ${alignr} ${color}super+arrows
|
||||
${color0} - 1/4 ekranu ${alignr} ${color}super+numpad[1..9]
|
||||
${color}PULPITY ${color0} ${hr 1}${voffset -2}
|
||||
${color0}idź na pulpit ${alignr} ${color}super+[1..4]
|
||||
]];
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue