translations update

master
Daniel Napora 2020-08-24 16:43:48 +02:00
parent 2e9a9c68b1
commit aad0b6ca11
14 changed files with 763 additions and 5 deletions

View File

@ -1,3 +1,4 @@
@text,,10,6,150,20,0,left,top,auto,#000000,<span size="large"></span>
@search,,24,6,150,20,2,left,top,auto,#000000 0,<i>Type to search</i>
^sep()
Terminal,exo-open --launch TerminalEmulator,utilities-terminal

Can't render this file because it has a wrong number of fields in line 2.

View File

@ -0,0 +1,167 @@
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 -c $HOME/.config/conky/CB-Left.conkyrc" &
--## Begin Window Settings #####################
own_window = true,
own_window_type = 'desktop',
own_window_transparent = true,
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
own_window_colour = '#000000',
own_window_class = 'Conky',
own_window_title = 'Bunsen Labs CB Left Conky',
--## 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 150
minimum_width = 200, minimum_height = 0,--## width | height
maximum_width = 200,
gap_x = 20,--## l|r
gap_y = 45,--## u|d
alignment = 'top_left',
--###################### End Window Settings ###
--## Font Settings #############################
-- Use Xft (anti-aliased font and stuff)
use_xft = true,
--xftfont Liberation Mono:bold:size=10
--xftfont Liberation Sans:size=10
font = 'Sans-serif:size=10',
-- 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 ###
--## Color Settings ############################
draw_shades = false,--yes
default_shade_color = '#000000',
draw_outline = false,-- amplifies text if yes
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,
-- Stippled borders?
stippled_borders = 5,
-- border margins
border_inner_margin = 5,
border_outer_margin = 0,
-- border width
border_width = 2,
-- graph borders
draw_graph_borders = false,
--default_graph_size 15 40
--###################### End Borders Section ###
--## Miscellaneous Section #####################
-- Boolean value, if true, Conky will be forked to background when started.
background = true,
-- Adds spaces around certain objects to stop them from moving other things
-- around, this only helps if you are using a mono font
-- Options: right, left or none
use_spacer = 'none',
-- Default and Minimum size is 256 - needs more for single commands that
-- "call" a lot of text IE: bash scripts
--text_buffer_size 6144
-- Subtract (file system) buffers from used memory?
no_buffers = true,
-- change GiB to G and MiB to M
short_units = true,
-- Like it says, ot pads the decimals on % values
-- doesn't seem to work since v1.7.1
pad_percents = 2,
-- 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,
-- Maximum size of user text buffer, i.e. layout below TEXT line in config file
-- (default is 16384 bytes)
-- max_user_text 16384
-- Desired output unit of all objects displaying a temperature. Parameters are
-- either "fahrenheit" or "celsius". The default unit is degree Celsius.
-- temperature_unit Fahrenheit
--################ End Miscellaneous Section ###
update_interval = 1,
};
conky.text = [[
INFORMACIÓN DEL SISTEMA
${hr}
Sistema:${alignr}${nodename}
tiempo de uso:${alignr}${uptime}
uso de RAM:$alignr${mem} / ${memmax}
uso de Swap:${alignr}${swap} / ${swapmax}
directorio raíz:$alignr${fs_used /} / ${fs_size /}
carpeta personal:$alignr${fs_used /home} / ${fs_size /home}
uso de CPU:${alignr}${cpu cpu0}%
S H O R T C U T K E Y S
${hr}
Alt + F2${alignr}Ejecutar orden
Alt + F3${alignr}Menu izquierdo
Super + Space${alignr}Menu principal
Super + Tab${alignr}Menu derecho
Super + t${alignr}Terminal
Super + f${alignr}Gestor de archivos
Super + e${alignr}Editor
Super + m${alignr}Reproductor de medios
Super + w${alignr}Navegador Web
Super + h${alignr}Administrador de tareas
Super + l${alignr}Bloquear pantalla
Super + v${alignr}Control de volumen
Super + x${alignr}Salir
PrtSc${alignr}Captura pantalla
]];

View File

@ -0,0 +1,167 @@
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 -c $HOME/.config/conky/CB-Right.conkyrc" &
--## Begin Window Settings #####################
own_window = true,
own_window_type = 'desktop',
own_window_transparent = true,
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
own_window_colour = '#000000',
own_window_class = 'Conky',
own_window_title = 'Bunsen Labs CB Right Conky',
--## 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 150
minimum_width = 200, minimum_height = 0,--## width | height
maximum_width = 200,
gap_x = 20,--## left | right
gap_y = 45,--## up | down
alignment = 'top_right',
--###################### End Window Settings ###
--## Font Settings #############################
-- Use Xft (anti-aliased font and stuff)
use_xft = true,
--xftfont Liberation Mono:bold:size=10
--xftfont Liberation Sans:bold:size=10
font = 'Sans-serif:bold:size=10',
-- 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 ###
--## Color Settings ############################
draw_shades = false,--yes
default_shade_color = '#000000',
draw_outline = false,-- amplifies text if yes
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,
-- Stippled borders?
stippled_borders = 5,
-- border margins
border_inner_margin = 5,
border_outer_margin = 0,
-- border width
border_width = 2,
-- graph borders
draw_graph_borders = false,
--default_graph_size 15 40
--###################### End Borders Section ###
--## Miscellaneous Section #####################
-- Boolean value, if true, Conky will be forked to background when started.
background = true,
-- Adds spaces around certain objects to stop them from moving other things
-- around, this only helps if you are using a mono font
-- Options: right, left or none
use_spacer = 'none',
-- Default and Minimum size is 256 - needs more for single commands that
-- "call" a lot of text IE: bash scripts
--text_buffer_size 6144
-- Subtract (file system) buffers from used memory?
no_buffers = true,
-- change GiB to G and MiB to M
short_units = true,
-- Like it says, ot pads the decimals on % values
-- doesn't seem to work since v1.7.1
pad_percents = 2,
-- 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,
-- Maximum size of user text buffer, i.e. layout below TEXT line in config file
-- (default is 16384 bytes)
-- max_user_text 16384
-- Desired output unit of all objects displaying a temperature. Parameters are
-- either "fahrenheit" or "celsius". The default unit is degree Celsius.
-- temperature_unit Fahrenheit
--################ End Miscellaneous Section ###
update_interval = 1,
};
conky.text = [[
INFORMACIÓN DEL SISTEMA
${hr}
Sistema:${alignr}${nodename}
tiempo de uso:${alignr}${uptime}
uso de RAM:$alignr${mem} / ${memmax}
uso de Swap:${alignr}${swap} / ${swapmax}
directorio raíz:$alignr${fs_used /} / ${fs_size /}
carpeta personal:$alignr${fs_used /home} / ${fs_size /home}
uso de CPU:${alignr}${cpu cpu0}%
S H O R T C U T K E Y S
${hr}
Alt + F2${alignr}Ejecutar orden
Alt + F3${alignr}Menu izquierdo
Super + Space${alignr}Menu principal
Super + Tab${alignr}Menu derecho
Super + t${alignr}Terminal
Super + f${alignr}Gestor de archivos
Super + e${alignr}Editor
Super + m${alignr}Reproductor de medios
Super + w${alignr}Navegador Web
Super + h${alignr}Administrador de tareas
Super + l${alignr}Bloquear pantalla
Super + v${alignr}Control de volumen
Super + x${alignr}Salir
PrtSc${alignr}Captura pantalla
]];

View File

@ -81,7 +81,7 @@ ${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 archivos ${color}${fs_type}
${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}

View File

@ -0,0 +1,88 @@
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 = false,
default_outline_color = '#000000',
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}$disco usado ${color2}${fs_used /} - ${fs_size /}
$alignr$color memoria cargada ${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}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}
]];

View File

@ -0,0 +1,88 @@
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 = false,
default_outline_color = '#000000',
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$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}$disco usado ${color2}${fs_used /} - ${fs_size /}
$alignr$color memoria cargada ${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}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}
]];

View File

@ -0,0 +1,120 @@
conky.config = {
-- WINDOW
own_window = true,
own_window_type = 'desktop',
own_window_transparent = true,
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
own_window_colour = '#000000',
own_window_class = 'Conky',
own_window_title = 'Mabox Shortcuts Conky',
gap_x = 65,
gap_y = 45,
minimum_width = '200',
--alignment mm
-- FONTS
use_xft = true,
font = 'Cantarell:bold:size=9',
xftalpha = 1,
override_utf8_locale = true,
-- COLORS
draw_shades = false,--yes
default_shade_color = '#000000',
draw_outline = false,
default_outline_color = '#000000',
--default_color 656667 # Waldorf original colour
--default_color 7a7a7a # Flame & Bunsen Grey
--default_color 929292 # Labs Grey
--default_color C0C0C0 # Silver
default_color = '#FFFFFF',
color0 = '#B0E0E6',-- PowderBlue
color1 = '#778899',-- LightSlateGray
--color2 D8BFD8 # Thistle
color2 = '#2ECC71',
color3 = '#9ACD32',-- YellowGreen
color4 = '#FFA07A',-- LightSalmon
color5 = '#FFDEAD',-- NavajoWhite
color6 = '#00BFFF',-- DeepSkyBlue
color7 = '#5F9EA0',-- CadetBlue
color8 = '#BDB76B',-- DarkKhaki
color9 = '#CD5C5C',-- IndianRed
-- 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 compositor ${alignr}${color}super+c
${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+TAB
${color2}ajustes (derecha) ${alignr} ${color}super+TAB
${color2}activar/desact DOCK (Gkrellm) ${alignr} ${color}super+alt+d
${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+[F1..F4]
]];

View File

@ -85,7 +85,7 @@ conky.config = {
};
conky.text = [[
${color}EJECUTAR${alignr}${color2}super = windows key${voffset -6}
${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

View File

@ -0,0 +1,120 @@
conky.config = {
-- WINDOW
own_window = true,
own_window_type = 'desktop',
own_window_transparent = true,
own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky',
own_window_colour = '#000000',
own_window_class = 'Conky',
own_window_title = 'Mabox Shortcuts Conky',
gap_x = 65,
gap_y = 45,
minimum_width = '200',
--alignment mm
-- FONTS
use_xft = true,
font = 'Cantarell:bold:size=9',
xftalpha = 1,
override_utf8_locale = true,
-- COLORS
draw_shades = false,--yes
default_shade_color = '#000000',
draw_outline = false,
default_outline_color = '#000000',
--default_color 656667 # Waldorf original colour
--default_color 7a7a7a # Flame & Bunsen Grey
--default_color 929292 # Labs Grey
--default_color C0C0C0 # Silver
default_color = '#f6cb33',
color0 = '#B0E0E6',-- PowderBlue
color1 = '#778899',-- LightSlateGray
--color2 D8BFD8 # Thistle
color2 = '#CCCCCC',
color3 = '#9ACD32',-- YellowGreen
color4 = '#FFA07A',-- LightSalmon
color5 = '#FFDEAD',-- NavajoWhite
color6 = '#00BFFF',-- DeepSkyBlue
color7 = '#5F9EA0',-- CadetBlue
color8 = '#BDB76B',-- DarkKhaki
color9 = '#CD5C5C',-- IndianRed
-- 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 compositor ${alignr}${color}super+c
${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+TAB
${color2}ajustes (derecha) ${alignr} ${color}super+TAB
${color2}activar/desact DOCK (Gkrellm) ${alignr} ${color}super+alt+d
${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+[F1..F4]
]];

View File

@ -1,4 +1,4 @@
@text,,6,6,150,20,0,left,top,auto,#000000,<span size="large"></span>
@text,,10,6,150,20,0,left,top,auto,#000000,<span size="large"></span>
@search,,24,6,150,20,2,left,top,auto,#000000 0,<i>Buscar </i>
^sep()
Terminal,exo-open --launch TerminalEmulator,utilities-terminal

Can't render this file because it contains an unexpected character in line 1 and column 54.

View File

@ -0,0 +1,4 @@
## EXAMLPE
# SITE_NAME,exo-open --launch WebBrowser https://tuxmachines.org,icon_name
^sep(Tus propios Links)
Configurar recursos online...,geany $HOME/.config/mabox/online-resources.csv,add
1 ## EXAMLPE
2 # SITE_NAME,exo-open --launch WebBrowser https://tuxmachines.org,icon_name
3 ^sep(Tus propios Links)
4 Configurar recursos online...,geany $HOME/.config/mabox/online-resources.csv,add

View File

@ -2,5 +2,5 @@
# Format:
# Label,command,icon
# Example:
^sep(Custom commands)
Configure...,geany $HOME/.config/mabox/right-append.csv,add
^sep(Comandos de configuración)
Configurar...,geany $HOME/.config/mabox/right-append.csv,add

1 # Here you can customize right sidepanel
2 # Format:
3 # Label,command,icon
4 # Example:
5 ^sep(Custom commands) ^sep(Comandos de configuración)
6 Configure...,geany $HOME/.config/mabox/right-append.csv,add Configurar...,geany $HOME/.config/mabox/right-append.csv,add

View File

@ -1,3 +1,4 @@
@text,,10,6,150,20,0,left,top,auto,#000000,<span size="large"></span>
@search,,44,6,150,20,2,left,top,auto,#000000 0,<i>Pisz aby wyszukać</i>
^sep()
Terminal,exo-open --launch TerminalEmulator,utilities-terminal

Can't render this file because it contains an unexpected character in line 1 and column 55.

View File

@ -0,0 +1,2 @@
^sep(Własne)
Dostosuj...,geany $HOME/.config/mabox/online-resources.csv,add
1 ^sep(Własne)
2 Dostosuj...,geany $HOME/.config/mabox/online-resources.csv,add