diff --git a/lang/en/conky/CB-Left.conkyrc b/lang/en/conky/CB-Left.conkyrc
new file mode 100644
index 0000000..003daa3
--- /dev/null
+++ b/lang/en/conky/CB-Left.conkyrc
@@ -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 = [[
+${alignr}S Y S T E M I N F O
+${membar 0}
+Host:${alignr}${nodename}
+Uptime:${alignr}${uptime}
+RAM:$alignr${mem} / ${memmax}
+Swap usage:${alignr}${swap} / ${swapmax}
+Root usage:$alignr${fs_used /} / ${fs_size /}
+Home usage:$alignr${fs_used /home} / ${fs_size /home}
+CPU Average:${alignr}${cpu cpu0}%
+
+
+${alignr}S H O R T C U T K E Y S
+${membar 0}
+Alt + F2${alignr}Run Dialog
+Alt + F3${alignr}Alt Menu
+Super + Space${alignr}Main Menu
+Super + Tab${alignr}Client Menu
+Super + t${alignr}Terminal
+Super + f${alignr}File Manager
+Super + e${alignr}Editor
+Super + m${alignr}Media Player
+Super + w${alignr}Web Browser
+Super + h${alignr}Task Manager
+Super + l${alignr}Lock Screen
+Super + v${alignr}Volume Control
+Super + x${alignr}Logout
+PrtSc${alignr}Screenshot
+]];
diff --git a/lang/en/conky/CB-Right.conkyrc b/lang/en/conky/CB-Right.conkyrc
new file mode 100644
index 0000000..f87efa1
--- /dev/null
+++ b/lang/en/conky/CB-Right.conkyrc
@@ -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 = [[
+S Y S T E M I N F O
+${hr}
+Host:${alignr}${nodename}
+Uptime:${alignr}${uptime}
+RAM:$alignr${mem} / ${memmax}
+Swap usage:${alignr}${swap} / ${swapmax}
+Root usage:$alignr${fs_used /} / ${fs_size /}
+Home usage:$alignr${fs_used /home} / ${fs_size /home}
+CPU Average:${alignr}${cpu cpu0}%
+
+
+S H O R T C U T K E Y S
+${hr}
+Alt + F2${alignr}Run Dialog
+Alt + F3${alignr}Alt Menu
+Super + Space${alignr}Main Menu
+Super + Tab${alignr}Client Menu
+Super + t${alignr}Terminal
+Super + f${alignr}File Manager
+Super + e${alignr}Editor
+Super + m${alignr}Media Player
+Super + w${alignr}Web Browser
+Super + h${alignr}Task Manager
+Super + l${alignr}Lock Screen
+Super + v${alignr}Volume Control
+Super + x${alignr}Logout
+PrtSc${alignr}Screenshot
+]];
diff --git a/lang/en/conky/MB-Text.conkyrc b/lang/en/conky/MB-Text.conkyrc
new file mode 100644
index 0000000..66e1308
--- /dev/null
+++ b/lang/en/conky/MB-Text.conkyrc
@@ -0,0 +1,121 @@
+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}
+]];
diff --git a/lang/en/conky/grey_manjaro_JWM.conkyrc b/lang/en/conky/grey_manjaro_JWM.conkyrc
new file mode 100644
index 0000000..45b554f
--- /dev/null
+++ b/lang/en/conky/grey_manjaro_JWM.conkyrc
@@ -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 = '#777777',
+ 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$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}
+]];
diff --git a/lang/en/conky/manjaro.conkyrc b/lang/en/conky/manjaro.conkyrc
new file mode 100644
index 0000000..9f63554
--- /dev/null
+++ b/lang/en/conky/manjaro.conkyrc
@@ -0,0 +1,73 @@
+conky.config = {
+--# ManjaroBox Conky Configuration Script
+--#
+--# Written by Carl Duff & Ugo Yak
+--# Modified by Aaditya Bagga (aaditya_gnulinux@zoho.com)
+--#
+--# Website: www.manjaro.org - Forum: http://forum.manjaro.org/
+--#
+
+-- Basic Settings
+
+ background = true,
+ use_xft = true,
+ font = 'sans:size=11',
+ xftalpha = 1,
+ update_interval = 1.0,
+ total_run_times = 0,
+ own_window = true,
+ own_window_transparent = true,
+ own_window_type = 'desktop',
+ own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
+ own_window_class = 'Conky',
+ double_buffer = true,
+ minimum_width = 300, minimum_height = 1,
+ maximum_width = 600,
+ draw_shades = false,
+ draw_outline = false,
+ draw_borders = false,
+ draw_graph_borders = false,
+ default_color = 'Black',
+ default_shade_color = '#000000',
+ default_outline_color = '#d9d7d6',
+ alignment = 'top_right',
+--conkymove, original value for gap_x: 5
+ gap_x = 12,
+--conkymove, original value for gap_y: 40
+ gap_y = 70,
+ no_buffers = true,
+ uppercase = false,
+ cpu_avg_samples = 2,
+ override_utf8_locale = true,
+
+--#
+--# ManjaroBox Conky Display
+--#
+};
+
+conky.text = [[
+${font sans:bold:size=18}${alignr}${color #35BF5C}${time %e} ${color #BEBEBE}${time %B}${color #35BF5C} ${time %Y}${color #BEBEBE}
+${alignr}${time %l:%M}${font sans:bold:size=15}${time %p}${voffset -8}
+${color #BEBEBE}${hr 1}${voffset -4}
+${font sans:bold:size=9}${alignr}${color #35BF5C}CPU ${color #BEBEBE}${cpu cpu0}% - ${color #35BF5C}RAM ${color #BEBEBE}$mem / $memmax
+${alignr}${color #35BF5C}HD ${color #BEBEBE}$fs_used / $fs_size${voffset 2} - ${color #35BF5C}Uptime ${color #BEBEBE}$uptime_short
+${hr 1}${voffset 6}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + f
+${alignr}${color #BEBEBE}File Manager${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + w
+${alignr}${color #BEBEBE}Web Browser${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + m
+${alignr}${color #BEBEBE}Dmenu${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + x
+${alignr}${color #BEBEBE}Oblogout${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + d
+${alignr}${color #BEBEBE}Show Desktop${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + t
+${alignr}${color #BEBEBE}Terminal${voffset -5}
+]];
diff --git a/lang/en/conky/manjaro_JWM.conkyrc b/lang/en/conky/manjaro_JWM.conkyrc
new file mode 100644
index 0000000..09478f9
--- /dev/null
+++ b/lang/en/conky/manjaro_JWM.conkyrc
@@ -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}$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}
+]];
diff --git a/lang/en/conky/quakeworld_manjaro_JWM.conkyrc b/lang/en/conky/quakeworld_manjaro_JWM.conkyrc
new file mode 100644
index 0000000..3328fce
--- /dev/null
+++ b/lang/en/conky/quakeworld_manjaro_JWM.conkyrc
@@ -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}$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}
+]];
diff --git a/lang/en/conky/shortcuts_green.conkyrc b/lang/en/conky/shortcuts_green.conkyrc
new file mode 100644
index 0000000..cb0d156
--- /dev/null
+++ b/lang/en/conky/shortcuts_green.conkyrc
@@ -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}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}run... ${alignr}${color}super+m / alt+F2
+${color2}web browser ${alignr}${color}super+w
+${color2}terminal ${alignr}${color}super+t
+${color2}volume control ${alignr}${color}super+v
+${color2}toggle compositor ${alignr}${color}super+c
+${color2}lock screen ${alignr}${color}super+l
+${color2}xkill ${alignr}${color}super+k
+${color2}exit ${alignr}${color}super+x
+${color}SIDEPANELS${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}places (left) ${alignr} ${color}ctrl+TAB
+${color2}settings (right) ${alignr} ${color}super+TAB
+${color2}toggle DOCK (Gkrellm) ${alignr} ${color}super+alt+d
+${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}lower ${alignr} ${color}alt+esc
+${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+[F1..F4]
+]];
diff --git a/lang/en/conky/shortcuts_grey.conkyrc b/lang/en/conky/shortcuts_grey.conkyrc
new file mode 100644
index 0000000..6213f8f
--- /dev/null
+++ b/lang/en/conky/shortcuts_grey.conkyrc
@@ -0,0 +1,121 @@
+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: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 = '#777777',
+ color3 = '#9ACD32',-- YellowGreen
+ color4 = '#FFA07A',-- LightSalmon
+ color5 = '#FFDEAD',-- NavajoWhite
+ color6 = '#00BFFF',-- DeepSkyBlue
+ color7 = '#5F9EA0',-- CadetBlue
+ color8 = '#BDB76B',-- DarkKhaki
+ color9 = '#CD5C5C',-- IndianRed
+
+-- BORDERS
+ draw_borders = 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}run... ${alignr}${color}super+m / alt+F2
+${color2}web browser ${alignr}${color}super+w
+${color2}terminal ${alignr}${color}super+t
+${color2}volume control ${alignr}${color}super+v
+${color2}toggle compositor ${alignr}${color}super+c
+${color2}lock screen ${alignr}${color}super+l
+${color2}xkill ${alignr}${color}super+k
+${color2}exit ${alignr}${color}super+x
+${color}SIDEPANELS${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}places (left) ${alignr} ${color}ctrl+TAB
+${color2}settings (right) ${alignr} ${color}super+TAB
+${color2}toggle DOCK (Gkrellm) ${alignr} ${color}super+alt+d
+${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}lower ${alignr} ${color}alt+esc
+${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+[F1..F4]
+]];
diff --git a/lang/en/conky/shortcuts_quakeworld.conkyrc b/lang/en/conky/shortcuts_quakeworld.conkyrc
new file mode 100644
index 0000000..f337bf4
--- /dev/null
+++ b/lang/en/conky/shortcuts_quakeworld.conkyrc
@@ -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}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}run... ${alignr}${color}super+m / alt+F2
+${color2}web browser ${alignr}${color}super+w
+${color2}terminal ${alignr}${color}super+t
+${color2}volume control ${alignr}${color}super+v
+${color2}toggle compositor ${alignr}${color}super+c
+${color2}lock screen ${alignr}${color}super+l
+${color2}xkill ${alignr}${color}super+k
+${color2}exit ${alignr}${color}super+x
+${color}SIDEPANELS${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}places (left) ${alignr} ${color}ctrl+TAB
+${color2}settings (right) ${alignr} ${color}super+TAB
+${color2}toggle DOCK (Gkrellm) ${alignr} ${color}super+alt+d
+${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}lower ${alignr} ${color}alt+esc
+${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+[F1..F4]
+]];
diff --git a/lang/en/jgmenu/prepend.csv b/lang/en/jgmenu/prepend.csv
new file mode 100644
index 0000000..d5eff24
--- /dev/null
+++ b/lang/en/jgmenu/prepend.csv
@@ -0,0 +1,61 @@
+@search,,24,6,150,20,2,left,top,auto,#000000 0,Type to search
+^sep()
+Terminal,exo-open --launch TerminalEmulator,utilities-terminal
+WWW Browser,exo-open --launch WebBrowser,firefox
+File Manager,exo-open --launch FileManager,system-file-manager
+Add/Remove software,pamac-manager,pamac
+^sep()
+Applications,^checkout(lx-apps),applications-other
+
+^sep()
+Screenshot,mb-jgtools screenshot,emblem-photos
+^sep()
+Settings,^checkout(settings),applications-utilities
+^sep()
+Lock screen,betterlockscreen -l dim -t "Type password to unlock...",system-lock-screen
+Exit,mb-jgtools mblogout,system-shutdown
+
+^tag(settings)
+Mabox Control Center,mcc,distributor-logo-mabox
+^sep(Desktop)
+Look and Feel,lxappearance,preferences-desktop-theme
+Wallpaper,nitrogen,nitrogen
+Notifications,xfce4-notifyd-config,xfce4-notifyd
+Conkies,^pipe(jgmenu_run ob --cmd=mabox-conky-pipemenu),desktop-effects
+Tint2 panels,^pipe(jgmenu_run ob --cmd=mabox-tint2-pipemenu),tint2conf
+Composer,^pipe(jgmenu_run ob --cmd=mabox-compositor),compton
+Menu,^checkout(menu),menu-editor
+^sep(Settings)
+Preferred applications,exo-preferred-applications,preferences-desktop-default-applications
+Power Manager,xfce4-power-manager-settings,xfce4-power-manager-settings
+Login Manager settings,lightdm-gtk-greeter-settings-pkexec,lightdm-gtk-greeter-settings
+^sep(Openbox)
+Openbox Configuration Manager,obconf,obconf
+Autostart,^checkout(autostart),geany
+RC - configuration file,geany ~/.config/openbox/rc.xml,geany
+Reconfigure Openbox,openbox --reconfigure,openbox
+^sep(Mabox Themes)
+Theme manager,mb-obthemes,preferences-desktop-theme
+^sep(Help)
+User Guide (online),^checkout(userguide),distributor-logo-mabox
+MaboxForum,exo-open --launch WebBrowser https://forum.maboxlinux.org/,distributor-logo-mabox
+^tag(menu)
+Edit Schema,geany ~/.config/jgmenu/prepend.csv,geany
+Edit Settings,geany ~/.config/mabox/mabox.conf,geany
+Menu Font Size,^checkout(size)
+Sync jgmenu with OB theme,obtheme2jgmenu,system-reboot
+^tag(userguide)
+. /usr/share/mb-jgtools/userguide.csv
+^tag(size)
+tiny,cat /usr/share/mb-jgtools/tiny > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+small,cat /usr/share/mb-jgtools/small > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+normal,cat /usr/share/mb-jgtools/normal > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+big,cat /usr/share/mb-jgtools/big > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+huge,cat /usr/share/mb-jgtools/huge > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+^tag(autostart)
+Choose apps/services (GUI Editor),yautostart
+Edit autostart file (advanced),geany ~/.config/openbox/autostart,geany
+^tag(lx-apps)
+
+
+
diff --git a/lang/en/mabox/exit.csv b/lang/en/mabox/exit.csv
new file mode 100644
index 0000000..8fcfa65
--- /dev/null
+++ b/lang/en/mabox/exit.csv
@@ -0,0 +1,11 @@
+## Comment out with # if you want to hide some lines
+^sep(Exit...)
+Logout,openbox --exit,system-logout
+Suspend,systemctl suspend,system-suspend
+Hibernate,systemctl hibernate,system-hibernate
+Reboot,systemctl reboot,system-reboot
+Lock screen, betterlockscreen -l,system-lock-screen
+Shutdown,systemctl poweroff,system-shutdown
+^sep()
+Configure options,geany $HOME/.config/mabox/exit.csv,geany
+
diff --git a/lang/en/mabox/jgtype.csv b/lang/en/mabox/jgtype.csv
new file mode 100644
index 0000000..0e6a611
--- /dev/null
+++ b/lang/en/mabox/jgtype.csv
@@ -0,0 +1,23 @@
+^sep(jgtype - type command helper)
+Updates,^checkout(updates)
+Mirrors and keys,^checkout(mirrors)
+^sep()
+Configure,geany ~/.config/mabox/jgtype.csv
+
+
+
+#TAGS
+^tag(updates)
+^sep(Pacman)
+Update sudo pacman -Syu,jgtype "sudo pacman -Syu"
+PKG DB refresh + update sudo pacman -Syyu,jgtype "sudo pacman -Syyu"
+^sep(Yay)
+Update yay,jgtype "yay"
+PKG DB refresh + update yay -Syyu,jgtype "yay -Syyu"
+
+^tag(mirrors)
+^sep(Mirrors ranking)
+Fasttrack sudo pacman-mirrors -f5,jgtype "sudo pacman-mirrors -f5"
+GeoIP sudo pacman-mirrors -i --geoip, jgtype "sudo pacman-mirrors -i --geoip"
+All sudo pacman-mirrors -i -c all,jgtype "sudo pacman-mirrors -i -c all"
+
diff --git a/lang/en/mabox/places-append.csv b/lang/en/mabox/places-append.csv
new file mode 100644
index 0000000..8ad33b2
--- /dev/null
+++ b/lang/en/mabox/places-append.csv
@@ -0,0 +1,2 @@
+#^sep(Your commands)
+#Customize...,geany $HOME/.config/mabox/places-append.csv,add
diff --git a/lang/en/mabox/places-prepend.csv b/lang/en/mabox/places-prepend.csv
new file mode 100644
index 0000000..eec59b8
--- /dev/null
+++ b/lang/en/mabox/places-prepend.csv
@@ -0,0 +1,2 @@
+^sep(Tools)
+FSearch, fsearch
diff --git a/lang/en/mabox/right-append.csv b/lang/en/mabox/right-append.csv
new file mode 100644
index 0000000..d61bd6b
--- /dev/null
+++ b/lang/en/mabox/right-append.csv
@@ -0,0 +1,6 @@
+# Here you can customize right sidepanel
+# Format:
+# Label,command,icon
+# Example:
+^sep(Custom commands)
+Configure...,geany $HOME/.config/mabox/right-append.csv,add
diff --git a/lang/en/mabox/right-prepend.csv b/lang/en/mabox/right-prepend.csv
new file mode 100644
index 0000000..7693a4f
--- /dev/null
+++ b/lang/en/mabox/right-prepend.csv
@@ -0,0 +1,3 @@
+# Here you can customize right sidepanel
+# Format:
+# Label,command,icon
diff --git a/lang/en/tint2/DatkMaia-top.tint2rc b/lang/en/tint2/DatkMaia-top.tint2rc
new file mode 100644
index 0000000..6de15e7
--- /dev/null
+++ b/lang/en/tint2/DatkMaia-top.tint2rc
@@ -0,0 +1,300 @@
+#---- Generated by tint2conf 1093 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Clock, Inactive desktop name, Launcher, Systray
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 2:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #1f292d 100
+border_color = #1f292d 100
+background_color_hover = #2c3a40 100
+border_color_hover = #ffffff 50
+background_color_pressed = #000000 100
+border_color_pressed = #ffffff 100
+
+# Background 3:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 4:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #3fa9f5 30
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 5:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #ffffff 50
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 6: Active desktop name, Active task, Active taskbar, Default task, Iconified task, Inactive taskbar, Normal task, Panel, Tooltip, Urgent task
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 66
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 7:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 8:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #cf3145 30
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+#-------------------------------------
+# Panel
+panel_items = PP
+panel_size = 60 20
+panel_margin = 0 0
+panel_padding = 0 0 2
+panel_background_id = 6
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top left horizontal
+panel_layer = normal
+panel_monitor = 1
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 25
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 1
+taskbar_background_id = 6
+taskbar_active_background_id = 6
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 1
+taskbar_name_active_background_id = 6
+taskbar_name_font = Liberation Sans Bold 10
+taskbar_name_font_color = #1c3c32 100
+taskbar_name_active_font_color = #12652e 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 0
+task_centered = 1
+urgent_nb_of_blink = 65535
+task_maximum_size = 1 1
+task_padding = 0 0 0
+task_tooltip = 0
+task_thumbnail = 0
+task_thumbnail_size = 140
+task_font_color = #e7e7e7 80
+task_normal_font_color = #e7e7e7 80
+task_urgent_font_color = #e7e7e7 100
+task_icon_asb = 100 0 0
+task_normal_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 10
+task_iconified_icon_asb = 100 0 0
+task_background_id = 6
+task_normal_background_id = 6
+task_active_background_id = 6
+task_urgent_background_id = 6
+task_iconified_background_id = 6
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle_iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 10 10 10
+systray_background_id = 1
+systray_sort = ascending
+systray_icon_size = 32
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter = ^ClipIt*
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 0 16
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 38
+launcher_icon_asb = 95 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 0
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Noto Sans Bold 9
+time1_timezone =
+time2_timezone =
+clock_font_color = #c0c0c0 100
+clock_padding = 0 6
+clock_background_id = 1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 0
+battery_low_cmd =
+battery_full_cmd =
+battery_font_color = #000000 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Left SidePanel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 8 0
+button_background_id = 0
+button_centered = 1
+button_max_icon_size = 14
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Right SidePanel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 8 0
+button_background_id = 0
+button_centered = 1
+button_max_icon_size = 14
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 10 5
+tooltip_background_id = 6
+tooltip_font_color = #e7e7e7 80
+tooltip_font = Fira Mono 9
+
diff --git a/lang/en/tint2/RainForest.tint2rc b/lang/en/tint2/RainForest.tint2rc
new file mode 100644
index 0000000..b32eb59
--- /dev/null
+++ b/lang/en/tint2/RainForest.tint2rc
@@ -0,0 +1,318 @@
+#---- Generated by tint2conf 0ae6 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Active taskbar, Inactive taskbar, Launcher, Panel
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #dae6d2 100
+border_color = #ffffff 0
+background_color_hover = #ffffff 100
+border_color_hover = #ffffff 0
+background_color_pressed = #ffffff 100
+border_color_pressed = #ffffff 0
+
+# Background 2: Active task
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #5f8a45 100
+background_color_hover = #5c616c 5
+border_color_hover = #66bb6a 60
+background_color_pressed = #5c616c 10
+border_color_pressed = #66bb6a 80
+
+# Background 3: Default task, Iconified task
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #5c616c 100
+background_color_hover = #5c616c 5
+border_color_hover = #5c616c 60
+background_color_pressed = #5c616c 5
+border_color_pressed = #5c616c 80
+
+# Background 4: Urgent task
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #dc143c 100
+background_color_hover = #5c616c 15
+border_color_hover = #dc143c 60
+background_color_pressed = #5c616c 20
+border_color_pressed = #000000 80
+
+# Background 5: Inactive desktop name
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #ffffff 0
+background_color_hover = #ffffff 0
+border_color_hover = #ffffff 0
+background_color_pressed = #ffffff 0
+border_color_pressed = #ffffff 0
+
+# Background 6: Active desktop name
+rounded = 0
+border_width = 0
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #66bb6a 80
+background_color_hover = #ffffff 0
+border_color_hover = #66bb6a 70
+background_color_pressed = #ffffff 0
+border_color_pressed = #66bb6a 60
+
+# Background 7: Tooltip
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 100
+border_color = #66bb6a 80
+background_color_hover = #ffffff 80
+border_color_hover = #66bb6a 80
+background_color_pressed = #ffffff 80
+border_color_pressed = #66bb6a 80
+
+# Background 8: Battery, Clock, Systray
+rounded = 0
+border_width = 0
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #5f8a45 100
+border_color = #ffffff 0
+background_color_hover = #66bb6a 100
+border_color_hover = #ffffff 0
+background_color_pressed = #66bb6a 100
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = PPLTSBCP
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 0 0 0
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.5
+autohide_hide_timeout = 2
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 4
+taskbar_background_id = 1
+taskbar_active_background_id = 1
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 8 8
+taskbar_name_background_id = 5
+taskbar_name_active_background_id = 6
+taskbar_name_font = Ubuntu Condensed Bold 12
+taskbar_name_font_color = #5c5c5c 100
+taskbar_name_active_font_color = #353535 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 20
+task_maximum_size = 150 40
+task_padding = 2 2 2
+task_font = Ubuntu Condensed Regular 11
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #5c616c 100
+task_active_font_color = #5f8a45 100
+task_urgent_font_color = #dc143c 100
+task_iconified_font_color = #5c616c 85
+task_icon_asb = 80 0 0
+task_active_icon_asb = 100 0 10
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 80 0 0
+task_background_id = 3
+task_active_background_id = 2
+task_urgent_background_id = 4
+task_iconified_background_id = 3
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = none
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 7 0 5
+systray_background_id = 8
+systray_sort = ascending
+systray_icon_size = 24
+systray_icon_asb = 100 0 10
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 0 8
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 24
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = gnome-wise
+launcher_icon_theme_override = 1
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+
+#-------------------------------------
+# Clock
+time1_format = %I:%M %d %b
+time2_format =
+time1_font = Ubuntu Condensed Bold 13
+time1_timezone =
+time2_timezone =
+time2_font = Ubuntu Condensed Bold 10
+clock_font_color = #ffffff 100
+clock_padding = 6 0
+clock_background_id = 8
+clock_tooltip = Today is %A, %dth Day Of %B !
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = gsimplecal
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd = notify-send "Battery Low !"
+battery_full_cmd =
+bat1_font = Ubuntu Condensed Bold 12
+bat2_font = Ubuntu Condensed Regular 0
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 5 5
+battery_background_id = 8
+battery_hide = 101
+battery_lclick_command = xfce4-power-manager-settings
+battery_rclick_command = xfce4-power-manager-settings
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Left SidePanel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Left -> Main Menu, Right -> Settings Menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 24
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Right SidePanel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 5 3
+tooltip_background_id = 7
+tooltip_font_color = #353535 100
+tooltip_font = Noto Sans 10
+
diff --git a/lang/en/tint2/Vertical_Left.tint2rc b/lang/en/tint2/Vertical_Left.tint2rc
new file mode 100644
index 0000000..642c4e0
--- /dev/null
+++ b/lang/en/tint2/Vertical_Left.tint2rc
@@ -0,0 +1,301 @@
+#---- Generated by tint2conf b54e ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Active taskbar, Clock, Inactive desktop name, Inactive taskbar, Launcher, Systray, Urgent task
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 2:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #1f292d 100
+border_color = #1f292d 100
+background_color_hover = #2c3a40 100
+border_color_hover = #ffffff 50
+background_color_pressed = #000000 100
+border_color_pressed = #ffffff 100
+
+# Background 3: Default task, Normal task
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 4: Active task
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #3fa9f5 30
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 5: Iconified task
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #ffffff 50
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 6: Panel, Tooltip
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 66
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 7:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 8:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #cf3145 30
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+#-------------------------------------
+# Panel
+panel_items = PLTBSCP
+panel_size = 100% 60
+panel_margin = 0 20
+panel_padding = 0 0 0
+panel_background_id = 6
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top left vertical
+panel_layer = normal
+panel_monitor = 1
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 25
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 1
+taskbar_background_id = 1
+taskbar_active_background_id = 1
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 1
+taskbar_name_active_background_id = 0
+taskbar_name_font = Liberation Sans Bold 10
+taskbar_name_font_color = #000000 100
+taskbar_name_active_font_color = #000000 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 65535
+task_maximum_size = 54 58
+task_padding = 10 8 12
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 140
+task_font_color = #e7e7e7 80
+task_normal_font_color = #e7e7e7 80
+task_urgent_font_color = #e7e7e7 100
+task_icon_asb = 100 0 0
+task_normal_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 10
+task_iconified_icon_asb = 100 0 0
+task_background_id = 3
+task_normal_background_id = 3
+task_active_background_id = 4
+task_urgent_background_id = 1
+task_iconified_background_id = 5
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle_iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 10 10 10
+systray_background_id = 1
+systray_sort = ascending
+systray_icon_size = 32
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter = ^ClipIt*
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 0 16
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 38
+launcher_icon_asb = 95 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 0
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Noto Sans Bold 10
+time1_timezone =
+time2_timezone =
+time2_font = Droid Sans 10
+clock_font_color = #c0c0c0 100
+clock_padding = 0 6
+clock_background_id = 1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 0
+battery_low_cmd =
+battery_full_cmd =
+battery_font_color = #000000 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Main menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command = mb-jgtools places
+button_dwheel_command = mb-jgtools right
+button_font_color = #000000 100
+button_padding = 10 10
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = exit
+button_text =
+button_tooltip = Zakończ
+button_lclick_command = mb-jgtools mblogout
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 10 10
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 10 5
+tooltip_background_id = 6
+tooltip_font_color = #e7e7e7 80
+tooltip_font = Fira Mono 9
+
diff --git a/lang/en/tint2/desktop_switch.tint2rc b/lang/en/tint2/desktop_switch.tint2rc
new file mode 100644
index 0000000..cebb6fb
--- /dev/null
+++ b/lang/en/tint2/desktop_switch.tint2rc
@@ -0,0 +1,232 @@
+#---- Generated by tint2conf 068a ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 0
+background_color_hover = #000000 0
+border_color_hover = #000000 0
+background_color_pressed = #000000 0
+border_color_pressed = #000000 0
+
+# Background 2: Podpowiedzi
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 10
+border_color = #000000 90
+background_color_hover = #000000 10
+border_color_hover = #000000 90
+background_color_pressed = #000000 10
+border_color_pressed = #000000 90
+
+# Background 3: Nieaktywne zadanie
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 10
+border_color = #000000 0
+background_color_hover = #ffffff 10
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 10
+border_color_pressed = #000000 0
+
+# Background 4: Aktywne zadanie
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 40
+border_color = #000000 0
+background_color_hover = #ffffff 40
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 40
+border_color_pressed = #000000 0
+
+# Background 5: Domyślne zadanie, Zminimalizowane
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 10
+border_color = #000000 0
+background_color_hover = #ffffff 10
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 10
+border_color_pressed = #000000 0
+
+# Background 6: Aktywne, Pilne
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 20
+border_color = #000000 0
+background_color_hover = #ffffff 20
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 20
+border_color_pressed = #000000 0
+
+#-------------------------------------
+# Panel
+panel_items = T
+panel_size = 60% 80
+panel_margin = 10 26
+panel_padding = 10 10 10
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = bottom
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 1.5
+autohide_height = 6
+strut_policy = none
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 10 10 10
+taskbar_background_id = 3
+taskbar_active_background_id = 4
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Droid Sans 9
+taskbar_name_font_color = #888888 100
+taskbar_name_active_font_color = #eeeeee 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 0
+task_centered = 1
+urgent_nb_of_blink = 20
+task_maximum_size = 300 40
+task_padding = 2 2 2
+task_font = Droid Sans 06_55 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #aaaaaa 69
+task_active_font_color = #eeeeee 100
+task_urgent_font_color = #064d99 100
+task_iconified_font_color = #aaaaaa 60
+task_icon_asb = 80 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 80 0 0
+task_background_id = 5
+task_active_background_id = 6
+task_urgent_background_id = 6
+task_iconified_background_id = 5
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 0
+systray_background_id = -1
+systray_sort = ascending
+systray_icon_size = 0
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 0
+launcher_background_id = -1
+launcher_icon_background_id = -1
+launcher_icon_size = 0
+launcher_icon_asb = 100 0 0
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 0
+
+#-------------------------------------
+# Clock
+time1_format =
+time2_format =
+time1_timezone =
+time2_timezone =
+clock_font_color = #000000 100
+clock_padding = 0 0
+clock_background_id = -1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command =
+clock_rclick_command =
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 0
+battery_low_cmd =
+battery_full_cmd =
+battery_font_color = #000000 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = -1
+battery_hide = 0
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 10 10
+tooltip_background_id = 2
+tooltip_font_color = #d8d8d8 100
+tooltip_font = Droid Sans normal 10.0
+
diff --git a/lang/en/tint2/dock.tint2rc b/lang/en/tint2/dock.tint2rc
new file mode 100644
index 0000000..88cbb79
--- /dev/null
+++ b/lang/en/tint2/dock.tint2rc
@@ -0,0 +1,269 @@
+#---- Generated by tint2conf 48a8 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 5
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #269b29 0
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Domyślne zadanie
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3: Programy
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #787373 0
+border_color = #9a9a9a 100
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Aktywne
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Podpowiedzi
+rounded = 6
+border_width = 2
+border_sides = B
+border_content_tint_weight = 2
+background_content_tint_weight = 2
+background_color = #383838 69
+border_color = #ffffff 58
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #787373 100
+border_color = #ffffff 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 7: Nazwa nieaktywnego pulpitu, Zasobnik systemowy, Zegar
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 50
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = LP
+panel_size = 100% 96
+panel_margin = 0 0
+panel_padding = 0 1 4
+panel_background_id = 1
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = normal
+panel_monitor = all
+panel_shrink = 1
+autohide = 1
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 5
+strut_policy = minimum
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 1
+mouse_hover_icon_asb = 100 0 20
+mouse_pressed_icon_asb = 100 1 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 0 4
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 10 0
+taskbar_name_background_id = 7
+taskbar_name_active_background_id = 6
+taskbar_name_font = Noto Sans 8
+taskbar_name_font_color = #bdbdbd 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 140 24
+task_padding = 1 0 5
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 8 0 0
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 20
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 8 8
+launcher_background_id = 3
+launcher_icon_background_id = 0
+launcher_icon_size = 64
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
+launcher_item_app = /usr/share/applications/show_desktop.desktop
+launcher_item_app = /usr/share/applications/exo-file-manager.desktop
+launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = /usr/share/applications/exo-web-browser.desktop
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 8 0
+clock_background_id = 7
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command =
+clock_rclick_command = gsimplecal
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_text =
+button_tooltip = Edytuj ten dok
+button_lclick_command = tint2conf $HOME/.config/tint2/dock.tint2rc
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font = Noto Sans 24
+button_font_color = #30b746 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 1
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/en/tint2/fullwidth_transp_dark.tint2rc b/lang/en/tint2/fullwidth_transp_dark.tint2rc
new file mode 100644
index 0000000..d017c35
--- /dev/null
+++ b/lang/en/tint2/fullwidth_transp_dark.tint2rc
@@ -0,0 +1,311 @@
+#---- Generated by tint2conf 4495 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Default task, Iconified task, Launcher
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 0
+background_color_hover = #000000 0
+border_color_hover = #000000 0
+background_color_pressed = #000000 0
+border_color_pressed = #000000 0
+
+# Background 2:
+rounded = 3
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 30
+border_color = #ffffff 0
+background_color_hover = #ffffff 30
+border_color_hover = #ffffff 0
+background_color_pressed = #ffffff 30
+border_color_pressed = #ffffff 0
+
+# Background 3: Urgent task
+rounded = 3
+border_width = 2
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4285f4 30
+border_color = #4285f4 100
+background_color_hover = #4285f4 30
+border_color_hover = #4285f4 100
+background_color_pressed = #4285f4 30
+border_color_pressed = #4285f4 100
+
+# Background 4: Active task, Button, Panel
+rounded = 2
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 40
+border_color = #000000 50
+background_color_hover = #000000 40
+border_color_hover = #000000 50
+background_color_pressed = #000000 40
+border_color_pressed = #000000 50
+
+# Background 5: Tooltip
+rounded = 3
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 100
+border_color = #000000 0
+background_color_hover = #000000 100
+border_color_hover = #000000 0
+background_color_pressed = #000000 100
+border_color_pressed = #000000 0
+
+# Background 6: Inactive taskbar
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 50
+border_color = #000000 0
+background_color_hover = #000000 50
+border_color_hover = #000000 0
+background_color_pressed = #000000 50
+border_color_pressed = #000000 0
+
+#-------------------------------------
+# Panel
+panel_items = P:L:TS:C:P
+panel_size = 100% 40
+panel_margin = 0 0
+panel_padding = 0 0 0
+panel_background_id = 4
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.5
+autohide_hide_timeout = 0.5
+autohide_height = 5
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 10 0 20
+taskbar_background_id = 6
+taskbar_active_background_id = 0
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Montserrat 8
+taskbar_name_font_color = #ffffff 20
+taskbar_name_active_font_color = #ffffff 40
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 5
+task_maximum_size = 180 5
+task_padding = 10 10 10
+task_font = Source Sans Pro 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #ffffff 80
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 100
+task_iconified_font_color = #d8d8d8 60
+task_icon_asb = 50 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 100 0 0
+task_background_id = 1
+task_active_background_id = 4
+task_urgent_background_id = 3
+task_iconified_background_id = 1
+mouse_left = toggle_iconify
+mouse_middle = none
+mouse_right = close
+mouse_scroll_up = none
+mouse_scroll_down = none
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 10
+systray_background_id = 0
+systray_sort = right2left
+systray_icon_size = 22
+systray_icon_asb = 30 0 50
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 2 2 10
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 28
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Numix-Square-Light
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Source Sans Pro Semi-Bold 11
+time1_timezone =
+time2_timezone =
+clock_font_color = #aaaaaa 100
+clock_padding = 10 0
+clock_background_id = 0
+clock_tooltip = Lewy -> kalendarz, Prawy - ustawienia daty i czasu
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 0
+battery_low_status = 100
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = Liberation Mono 8
+bat2_font = Liberation Mono 8
+battery_font_color = #b5b5b5 100
+bat1_format =
+bat2_format =
+battery_padding = 2 0
+battery_background_id = 0
+battery_hide = 100
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Separator 1
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 15
+separator_padding = 1 0
+
+#-------------------------------------
+# Separator 2
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 5
+separator_padding = 1 0
+
+#-------------------------------------
+# Separator 3
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 5
+separator_padding = 1 0
+
+#-------------------------------------
+# Separator 4
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 5
+separator_padding = 1 0
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = ~/.config/tint2/menu.png
+button_text =
+button_tooltip = Left-> Main Menu, Right -> Settings Menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 4
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = ~/.config/tint2/session.png
+button_text =
+button_tooltip = Exit... (win + x)
+button_lclick_command = mb-jgtools mblogout ipc
+button_rclick_command = sudo sync && notify-send "Sync complete"
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 12 12
+button_background_id = 4
+button_centered = 1
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 4 4
+tooltip_background_id = 5
+tooltip_font_color = #ffffff 71
+tooltip_font = Sans normal 10
+
diff --git a/lang/en/tint2/gradient.tint2rc b/lang/en/tint2/gradient.tint2rc
new file mode 100644
index 0000000..38b4f90
--- /dev/null
+++ b/lang/en/tint2/gradient.tint2rc
@@ -0,0 +1,356 @@
+#---- Generated by tint2conf 871b ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+# Gradient 1
+gradient = vertical
+start_color = #393939 100
+end_color = #131313 100
+color_stop = 50.000000 #4a4a4a 100
+
+# Gradient 2
+gradient = horizontal
+start_color = #323232 100
+end_color = #262626 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 6.000000 #47c247 100
+color_stop = 6.000000 #47c247 100
+
+# Gradient 3
+gradient = vertical
+start_color = #161616 100
+end_color = #464646 100
+
+# Gradient 4
+gradient = vertical
+start_color = #b34235 100
+end_color = #8f342a 100
+
+# Gradient 5
+gradient = vertical
+start_color = #232323 100
+end_color = #171717 100
+
+#-------------------------------------
+# Backgrounds
+# Background 1: Iconified task
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #363636 100
+border_color = #404040 100
+gradient_id = 1
+background_color_hover = #363636 100
+border_color_hover = #0f0f0f 100
+background_color_pressed = #363636 100
+border_color_pressed = #0f0f0f 100
+
+# Background 2:
+rounded = 3
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #161616 100
+border_color = #161616 100
+gradient_id = 1
+background_color_hover = #161616 100
+border_color_hover = #161616 100
+background_color_pressed = #161616 100
+border_color_pressed = #161616 100
+
+# Background 3:
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #292929 100
+border_color = #161616 100
+gradient_id = 2
+background_color_hover = #292929 100
+border_color_hover = #161616 100
+background_color_pressed = #292929 100
+border_color_pressed = #161616 100
+
+# Background 4: Active desktop name, Active task, Default task, Inactive desktop name
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 20
+background_content_tint_weight = 0
+background_color = #464646 100
+border_color = #0f0f0f 100
+gradient_id = 3
+background_color_hover = #464646 100
+border_color_hover = #0f0f0f 100
+background_color_pressed = #464646 100
+border_color_pressed = #0f0f0f 100
+
+# Background 5: Urgent task
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #a54d4d 100
+border_color = #ffde00 100
+gradient_id = 4
+background_color_hover = #a54d4d 100
+border_color_hover = #ffde00 100
+background_color_pressed = #a54d4d 100
+border_color_pressed = #ffde00 100
+
+# Background 6: Tooltip
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #e7e7f0 40
+border_color = #161616 40
+background_color_hover = #e7e7f0 40
+border_color_hover = #161616 40
+background_color_pressed = #e7e7f0 40
+border_color_pressed = #161616 40
+
+# Background 7: Active taskbar, Battery, Clock, Inactive taskbar, Panel, Systray
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #161616 100
+border_color = #161616 100
+gradient_id = 1
+background_color_hover = #161616 100
+border_color_hover = #161616 100
+background_color_pressed = #161616 100
+border_color_pressed = #161616 100
+
+#-------------------------------------
+# Panel
+panel_items = PLT:S:B:CP
+panel_size = 96% 40
+panel_margin = 0 0
+panel_padding = 2 2 2
+panel_background_id = 7
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.7
+autohide_hide_timeout = 1.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 2 2
+taskbar_background_id = 7
+taskbar_active_background_id = 7
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 8 0
+taskbar_name_background_id = 4
+taskbar_name_active_background_id = 4
+taskbar_name_font = Ubuntu 10
+taskbar_name_font_color = #a1a1a1 23
+taskbar_name_active_font_color = #f3f3ff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 10
+task_maximum_size = 160 24
+task_padding = 4 0 4
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 210
+task_font_color = #bbbbbb 100
+task_active_font_color = #f3f3ff 100
+task_urgent_font_color = #f3f3ff 100
+task_iconified_font_color = #cccccc 100
+task_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 70
+task_iconified_icon_asb = 100 0 -40
+task_background_id = 4
+task_active_background_id = 4
+task_urgent_background_id = 5
+task_iconified_background_id = 1
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 4
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 22
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 2
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 32
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = elementary-xfce
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 0
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %a %e %b %k:%M
+time2_format =
+time1_font = Roboto Mono Regular 10
+time1_timezone =
+time2_timezone =
+time2_font =
+clock_font_color = #f3f3ff 100
+clock_padding = 2 0
+clock_background_id = 7
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 7
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = Roboto Mono Regular 10
+bat2_font = sans 0
+battery_font_color = #f3f3ff 100
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 7
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd = notify-send "AC Connected"
+ac_disconnected_cmd = notify-send "AC Disconected"
+
+#-------------------------------------
+# Separator 1
+separator = new
+separator_background_id = 0
+separator_color = #777777 83
+separator_style = empty
+separator_size = 0
+separator_padding = 4 0
+
+#-------------------------------------
+# Separator 2
+separator = new
+separator_background_id = 0
+separator_color = #777777 83
+separator_style = empty
+separator_size = 0
+separator_padding = 4 0
+
+#-------------------------------------
+# Separator 3
+separator = new
+separator_background_id = 0
+separator_color = #777777 83
+separator_style = empty
+separator_size = 0
+separator_padding = 4 0
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Left - main menu, Right - settings menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = tint2conf
+button_text =
+button_tooltip = Konfiguruj panel
+button_lclick_command = tint2conf $HOME/.config/tint2/gradient.tint2rc
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.8
+tooltip_hide_timeout = 0.3
+tooltip_padding = 5 4
+tooltip_background_id = 6
+tooltip_font_color = #000000 100
+tooltip_font = Ubuntu 10
+
diff --git a/lang/en/tint2/mabox2-top.tint2rc b/lang/en/tint2/mabox2-top.tint2rc
new file mode 100644
index 0000000..9992b6e
--- /dev/null
+++ b/lang/en/tint2/mabox2-top.tint2rc
@@ -0,0 +1,280 @@
+#---- Generated by tint2conf 2319 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #222222 100
+border_color = #000000 30
+background_color_hover = #000000 60
+border_color_hover = #000000 30
+background_color_pressed = #000000 60
+border_color_pressed = #000000 30
+
+# Background 2: Default task, Iconified task
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #777777 20
+border_color = #777777 30
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 3: Active task
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #777777 78
+border_color = #ffffff 40
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 4: Urgent task
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #aa4400 100
+border_color = #aa7733 100
+background_color_hover = #cc7700 100
+border_color_hover = #aa7733 100
+background_color_pressed = #555555 4
+border_color_pressed = #aa7733 100
+
+# Background 5: Panel, Tooltip
+rounded = 0
+border_width = 1
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #222222 66
+border_color = #444444 100
+background_color_hover = #ffffaa 100
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #000000 100
+
+#-------------------------------------
+# Panel
+panel_items = PPL:TSBCP
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 4 0 2
+panel_background_id = 5
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = bottom
+panel_monitor = primary
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.5
+autohide_hide_timeout = 0.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 20
+mouse_pressed_icon_asb = 50 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 2
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 4 2
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font_color = #cacaca 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 100000
+task_maximum_size = 130 30
+task_padding = 4 4 4
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 220
+task_font_color = #ffffff 100
+task_background_id = 2
+task_active_background_id = 3
+task_urgent_background_id = 4
+task_iconified_background_id = 2
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 8
+systray_background_id = 0
+systray_sort = ascending
+systray_icon_size = 20
+systray_icon_asb = 100 -100 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 4 1 4
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 28
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 1
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Cantarell Bold 12
+time1_timezone =
+time2_timezone =
+time2_font = Cantarell 0
+clock_font_color = #ffffff 100
+clock_padding = 5 0
+clock_background_id = 0
+clock_tooltip = Today is %A %dth day of %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd =
+battery_full_cmd = notify-send battery full
+bat1_font = Monospace 9
+bat2_font = Cantarell 0
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd = notify-send ac_connected
+ac_disconnected_cmd = notify-send ac disconnected
+
+#-------------------------------------
+# Separator 1
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = dots
+separator_size = 4
+separator_padding = 0 0
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Left SidePanel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Left -> main menu, Right - settings menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Right SidePanel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.5
+tooltip_hide_timeout = 0.1
+tooltip_padding = 8 8
+tooltip_background_id = 5
+tooltip_font_color = #ffffff 100
+
diff --git a/lang/en/tint2/mabox2001.tint2rc b/lang/en/tint2/mabox2001.tint2rc
new file mode 100644
index 0000000..6cd0acf
--- /dev/null
+++ b/lang/en/tint2/mabox2001.tint2rc
@@ -0,0 +1,304 @@
+#---- Generated by tint2conf 9b96 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 19
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Default task
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3:
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #787373 45
+border_color = #9a9a9a 100
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Active task
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Tooltip
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #147122 100
+border_color = #fff3f3 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Active desktop name
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #787373 100
+border_color = #ffffff 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 7: Clock, Inactive desktop name, Launcher, Systray
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 50
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = PPLTSCP
+panel_size = 98% 34
+panel_margin = 4 4
+panel_padding = 1 1 4
+panel_background_id = 1
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 99 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 0 4
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 10 0
+taskbar_name_background_id = 7
+taskbar_name_active_background_id = 6
+taskbar_name_font = Noto Sans 8
+taskbar_name_font_color = #bdbdbd 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 140 24
+task_padding = 1 0 5
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 8 4 4
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 18
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 4 4
+launcher_background_id = 7
+launcher_icon_background_id = 0
+launcher_icon_size = 24
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 8 0
+clock_background_id = 7
+clock_tooltip = Today is %A, %e day of %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Left SidePanel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Left -> main menu, Right -> settings menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Right SidePanel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/en/tint2/micro95_bottom.tint2rc b/lang/en/tint2/micro95_bottom.tint2rc
new file mode 100644
index 0000000..df8f28b
--- /dev/null
+++ b/lang/en/tint2/micro95_bottom.tint2rc
@@ -0,0 +1,314 @@
+#---- Generated by tint2conf 6e20 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #d4cfc7 100
+border_color = #ffffff 100
+background_color_hover = #eeeeee 100
+border_color_hover = #464646 100
+background_color_pressed = #eeeeee 100
+border_color_pressed = #bbbbbb 100
+
+# Background 2: Default task, Iconified task
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #d4cfc7 100
+border_color = #484848 29
+background_color_hover = #eeeeee 100
+border_color_hover = #4a4a4a 100
+background_color_pressed = #cccccc 100
+border_color_pressed = #cccccc 100
+
+# Background 3: Active task
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ebebeb 100
+border_color = #484848 100
+background_color_hover = #eeeeee 100
+border_color_hover = #aaaaaa 100
+background_color_pressed = #cccccc 100
+border_color_pressed = #999999 100
+
+# Background 4: Urgent task
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #aa4400 100
+border_color = #aa7733 100
+background_color_hover = #aa4400 100
+border_color_hover = #aa7733 100
+background_color_pressed = #aa4400 100
+border_color_pressed = #aa7733 100
+
+# Background 5: Tooltip
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffaa 100
+border_color = #999999 100
+background_color_hover = #ffffaa 100
+border_color_hover = #999999 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #999999 100
+
+# Background 6: Inactive desktop name
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #eeeeee 100
+border_color = #cccccc 100
+background_color_hover = #eeeeee 100
+border_color_hover = #cccccc 100
+background_color_pressed = #eeeeee 100
+border_color_pressed = #cccccc 100
+
+# Background 7: Active desktop name
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #dddddd 100
+border_color = #999999 100
+background_color_hover = #dddddd 100
+border_color_hover = #999999 100
+background_color_pressed = #dddddd 100
+border_color_pressed = #999999 100
+
+# Background 8: Systray
+rounded = 3
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #dddddd 100
+border_color = #cccccc 100
+background_color_hover = #dddddd 100
+border_color_hover = #cccccc 100
+background_color_pressed = #dddddd 100
+border_color_pressed = #cccccc 100
+
+#-------------------------------------
+# Panel
+panel_items = PPLTFSCP
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 0 2 4
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = normal
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0
+autohide_hide_timeout = 0.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 2
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 1
+taskbar_name_padding = 6 3
+taskbar_name_background_id = 6
+taskbar_name_active_background_id = 7
+taskbar_name_font = sans bold 9
+taskbar_name_font_color = #222222 46
+taskbar_name_active_font_color = #222222 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 100000
+task_maximum_size = 140 35
+task_padding = 4 3 4
+task_font = sans 8
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #222222 100
+task_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 3
+task_urgent_background_id = 4
+task_iconified_background_id = 2
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = prev_task
+mouse_scroll_down = next_task
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 4 0 2
+systray_background_id = 8
+systray_sort = ascending
+systray_icon_size = 22
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 2
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 22
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Chicago95-tux
+launcher_icon_theme_override = 0
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans bold 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 7
+clock_font_color = #222222 100
+clock_padding = 1 0
+clock_background_id = 0
+clock_tooltip = Today is %A %dth day of %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #222222 100
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Left SidePanel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Left -> main menu, Right -> settings menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 24
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Right SidePanel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.5
+tooltip_hide_timeout = 0.1
+tooltip_padding = 6 6
+tooltip_background_id = 5
+tooltip_font_color = #222222 100
+tooltip_font = sans 9
+
diff --git a/lang/en/tint2/minimal.tint2rc b/lang/en/tint2/minimal.tint2rc
new file mode 100644
index 0000000..328b1a7
--- /dev/null
+++ b/lang/en/tint2/minimal.tint2rc
@@ -0,0 +1,126 @@
+#---------------------------------------------
+# TINT2 CONFIG FILE
+#---------------------------------------------
+
+#---------------------------------------------
+# BACKGROUND AND BORDER
+#---------------------------------------------
+#panel
+rounded = 1
+border_width = 0
+background_color = #000000 60
+border_color = #ffffff 18
+#taskbar
+rounded = 1
+border_width = 0
+background_color = #ffffff 10
+border_color = #ffffff 50
+#task-active
+rounded = 1
+border_width = 0
+background_color = #ffffff 40
+border_color = #ffffff 50
+#task
+rounded = 1
+border_width = 0
+background_color = #ffffff 18
+border_color = #ffffff 70
+
+#---------------------------------------------
+# PANEL
+#---------------------------------------------
+panel_monitor = 1
+panel_position = bottom center
+panel_size = 97% 20
+panel_margin = 0 0
+panel_padding = 0 0 4
+font_shadow = 0
+panel_background_id = 0
+wm_menu = 0
+panel_dock = 0
+panel_layer = top
+
+#---------------------------------------------
+# TASKBAR
+#---------------------------------------------
+taskbar_mode = multi_desktop
+#taskbar_mode = single_desktop
+taskbar_padding = 0 0 2
+taskbar_background_id = 2
+#taskbar_active_background_id = 0
+
+#---------------------------------------------
+# TASKS
+#---------------------------------------------
+task_icon = 1
+task_text = 1
+task_maximum_size = 140 35
+task_centered = 1
+task_padding = 2 1
+task_font = Terminus 6
+task_font_color = #ffffff 70
+task_background_id = 4
+task_icon_asb = 100 0 0
+# replace STATUS by 'urgent', 'active' or 'iconfied'
+#task_STATUS_background_id = 2
+#task_STATUS_font_color = #ffffff 85
+#task_STATUS_icon_asb = 100 0 0
+# example:
+task_active_background_id = 3
+task_active_font_color = #ffffff 85
+task_active_icon_asb = 100 0 0
+urgent_nb_of_blink = 8
+
+#---------------------------------------------
+# SYSTRAYBAR
+#---------------------------------------------
+systray = 0
+systray_padding = 2 1 4
+systray_background_id = 2
+systray_sort = left2right
+systray_icon_size = 0
+systray_icon_asb = 100 0 0
+
+#---------------------------------------------
+# CLOCK
+#---------------------------------------------
+time1_format = %H:%M
+time1_font = Zekton 12
+#time2_format = %I:%M %p
+#time2_font = Aller 10
+clock_font_color = #ffffff 100
+clock_padding = 6 2
+clock_background_id = 0
+#clock_lclick_command = xclock
+#clock_rclick_command = orage
+#---------------------------------------------
+# BATTERY
+#---------------------------------------------
+battery = 0
+battery_hide = 98
+battery_low_status = 10
+battery_low_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 76
+battery_padding = 1 0
+battery_background_id = 0
+
+#---------------------------------------------
+# TOOLTIP
+#---------------------------------------------
+tooltip = 1
+tooltip_padding = 2 2
+tooltip_show_timeout = 0.7
+tooltip_hide_timeout = 0.3
+tooltip_background_id = 1
+tooltip_font_color = #ffffff 80
+tooltip_font = sans 10
+
+#---------------------------------------------
+# MOUSE ACTION ON TASK
+#---------------------------------------------
+mouse_middle = none
+mouse_right = none
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
diff --git a/lang/en/tint2/minimal_as_fsck.tint2rc b/lang/en/tint2/minimal_as_fsck.tint2rc
new file mode 100644
index 0000000..31aa3f7
--- /dev/null
+++ b/lang/en/tint2/minimal_as_fsck.tint2rc
@@ -0,0 +1,195 @@
+#---- Generated by tint2conf ec38 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Aktywne zadanie, Nieaktywne zadanie, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 1
+border_sides = BLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 12
+border_color = #ffffff 43
+background_color_hover = #ffffff 12
+border_color_hover = #ffffff 100
+background_color_pressed = #ffffff 12
+border_color_pressed = #ffffff 100
+
+# Background 2: Aktywne
+rounded = 0
+border_width = 1
+border_sides = LR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 11
+border_color = #ffffff 56
+background_color_hover = #000000 11
+border_color_hover = #ffffff 100
+background_color_pressed = #000000 11
+border_color_pressed = #ffffff 100
+
+# Background 3: Pilne
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ff0000 40
+border_color = #ffffff 100
+background_color_hover = #ff0000 40
+border_color_hover = #ffffff 100
+background_color_pressed = #ff0000 40
+border_color_pressed = #ffffff 100
+
+#-------------------------------------
+# Panel
+panel_items = TSC
+panel_size = 100% 24
+panel_margin = 0 0
+panel_padding = 0 0 5
+panel_background_id = 0
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = normal
+panel_monitor = 1
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0
+autohide_hide_timeout = 0
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 0
+taskbar_background_id = 1
+taskbar_active_background_id = 1
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = -1
+taskbar_name_active_background_id = -1
+taskbar_name_font_color = #000000 100
+taskbar_name_active_font_color = #000000 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 0
+task_centered = 1
+urgent_nb_of_blink = 7
+task_maximum_size = 200 32
+task_padding = 5 1 5
+task_font = Ubuntu Light 8
+task_tooltip = 0
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #ffffff 100
+task_active_font_color = #ffffff 100
+task_urgent_font_color = #ff0000 100
+task_iconified_font_color = #ffffff 100
+task_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 100 0 0
+task_background_id = 0
+task_active_background_id = 2
+task_urgent_background_id = 3
+task_iconified_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = none
+mouse_scroll_up = none
+mouse_scroll_down = none
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 5 2 5
+systray_background_id = 1
+systray_sort = right2left
+systray_icon_size = 0
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 0
+launcher_background_id = -1
+launcher_icon_background_id = -1
+launcher_icon_size = 0
+launcher_icon_asb = 100 0 0
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 0
+
+#-------------------------------------
+# Clock
+time1_format = %a %d %b ~ %H:%M
+time2_format =
+time1_font = Ubuntu Light 8
+time1_timezone =
+time2_timezone =
+clock_font_color = #ffffff 100
+clock_padding = 10 0
+clock_background_id = 1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command =
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd = notify-send "battery low"
+battery_full_cmd =
+bat1_font = Sans 12
+bat2_font = Sans 12
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 90
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 0 0
+tooltip_background_id = 0
+tooltip_font_color = #ffffff 100
+tooltip_font = Sans 12
+
diff --git a/lang/en/tint2/quakeworld.tint2rc b/lang/en/tint2/quakeworld.tint2rc
new file mode 100644
index 0000000..ee549ed
--- /dev/null
+++ b/lang/en/tint2/quakeworld.tint2rc
@@ -0,0 +1,299 @@
+#---- Generated by tint2conf 376b ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 48
+border_color = #5e0b0b 100
+background_color_hover = #000000 70
+border_color_hover = #000000 30
+background_color_pressed = #000000 70
+border_color_pressed = #000000 30
+
+# Background 2: Default task, Iconified task
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 0
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 3: Active task, Inactive taskbar, Launcher
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #777777 20
+border_color = #ffffff 40
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 4: Urgent task
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #aa4400 100
+border_color = #aa7733 100
+background_color_hover = #cc7700 100
+border_color_hover = #aa7733 100
+background_color_pressed = #555555 4
+border_color_pressed = #aa7733 100
+
+# Background 5: Clock, Tooltip
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #5e0b0b 100
+border_color = #000000 100
+background_color_hover = #ffffaa 0
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 0
+border_color_pressed = #000000 100
+
+# Background 6:
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #5e0b0b 100
+border_color = #000000 100
+background_color_hover = #ffffaa 100
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #000000 100
+
+# Background 7: Systray
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #65543f 100
+border_color = #000000 100
+background_color_hover = #ffffaa 100
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #000000 100
+
+#-------------------------------------
+# Panel
+panel_items = PPLTSBCP
+panel_size = 80% 30
+panel_margin = 0 0
+panel_padding = 2 2 0
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0
+autohide_hide_timeout = 0.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 1
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 3 0 4
+taskbar_background_id = 3
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 4 2
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Noto Sans 9
+taskbar_name_font_color = #e3e3e3 100
+taskbar_name_active_font_color = #f4c00d 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 100000
+task_maximum_size = 96 30
+task_padding = 2 3 4
+task_font = Noto Sans 8
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #f6cb33 100
+task_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 3
+task_urgent_background_id = 4
+task_iconified_background_id = 2
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 4 0
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 24
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 2 0 2
+launcher_background_id = 3
+launcher_icon_background_id = 0
+launcher_icon_size = 24
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 1
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = ubuntu 10
+time1_timezone =
+time2_timezone =
+clock_font_color = #f6cb33 100
+clock_padding = 6 0
+clock_background_id = 5
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = ubuntu 10
+bat2_font = ubuntu 8
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Left SidePanel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Left -> Main menu, Right -> settings menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Right SidePanel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.5
+tooltip_hide_timeout = 0.1
+tooltip_padding = 6 10
+tooltip_background_id = 5
+tooltip_font_color = #f6cb33 100
+
diff --git a/lang/en/tint2/tint2-sessionfile b/lang/en/tint2/tint2-sessionfile
new file mode 100644
index 0000000..62d017e
--- /dev/null
+++ b/lang/en/tint2/tint2-sessionfile
@@ -0,0 +1 @@
+/.config/tint2/mabox2001.tint2rc
diff --git a/lang/en/tint2/tint2rc b/lang/en/tint2/tint2rc
new file mode 100644
index 0000000..29ab705
--- /dev/null
+++ b/lang/en/tint2/tint2rc
@@ -0,0 +1,256 @@
+#---- Generated by tint2conf b7fb ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1:
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 39
+border_color = #000000 60
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Domyślne zadanie
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3: Panel, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 31
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Aktywne
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Podpowiedzi
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #147122 100
+border_color = #fff3f3 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #147122 100
+border_color = #0e9822 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+#-------------------------------------
+# Panel
+panel_items = LTBSCP
+panel_size = 100% 34
+panel_margin = 0 0
+panel_padding = 1 1 2
+panel_background_id = 3
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 2 2
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 6 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 6
+taskbar_name_font_color = #1c9536 100
+taskbar_name_active_font_color = #18f427 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = center
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 140 30
+task_padding = 4 4 4
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 3 0 0
+systray_background_id = 3
+systray_sort = ascending
+systray_icon_size = 20
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 2 2 4
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 32
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
+launcher_item_app = /usr/share/applications/show_desktop.desktop
+launcher_item_app = /usr/share/applications/exo-file-manager.desktop
+launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = /usr/share/applications/exo-web-browser.desktop
+launcher_item_app = /usr/share/applications/mcc.desktop
+launcher_item_app = /usr/share/applications/calamares.desktop
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 1 0
+clock_background_id = 3
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = tint2conf
+button_text =
+button_lclick_command = tint2conf
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/en/tint2/transparent.tint2rc b/lang/en/tint2/transparent.tint2rc
new file mode 100644
index 0000000..cff796d
--- /dev/null
+++ b/lang/en/tint2/transparent.tint2rc
@@ -0,0 +1,301 @@
+#---- Generated by tint2conf 846b ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Clock, Panel
+rounded = 0
+border_width = 5
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #269b29 0
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Default task
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3: Launcher, Systray
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #787373 0
+border_color = #9a9a9a 100
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Active task
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Tooltip
+rounded = 6
+border_width = 2
+border_sides = B
+border_content_tint_weight = 2
+background_content_tint_weight = 2
+background_color = #383838 69
+border_color = #ffffff 58
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Active desktop name
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #787373 100
+border_color = #ffffff 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 7: Inactive desktop name
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 50
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = PPFTFSCP
+panel_size = 100% 30
+panel_margin = 0 0
+panel_padding = 0 1 4
+panel_background_id = 1
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 5
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 1
+mouse_hover_icon_asb = 100 0 20
+mouse_pressed_icon_asb = 100 1 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 0 4
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 1
+taskbar_name_padding = 10 0
+taskbar_name_background_id = 7
+taskbar_name_active_background_id = 6
+taskbar_name_font = Noto Sans 8
+taskbar_name_font_color = #bdbdbd 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = center
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 20 20
+task_padding = 1 0 5
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 1 1 0
+systray_background_id = 3
+systray_sort = ascending
+systray_icon_size = 18
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 8 8
+launcher_background_id = 3
+launcher_icon_background_id = 0
+launcher_icon_size = 64
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %A %d %B %H:%M
+time2_format =
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 8 0
+clock_background_id = 1
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_text = <
+button_tooltip = Left panel - Places (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #ffffff 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_text = Applications
+button_tooltip = Left -> Main Menu, Right -> Settings Menu
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #ffffff 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_text = >
+button_tooltip = Right panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #fffdfd 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/en/tint2/vertex.tint2rc b/lang/en/tint2/vertex.tint2rc
new file mode 100644
index 0000000..556cca2
--- /dev/null
+++ b/lang/en/tint2/vertex.tint2rc
@@ -0,0 +1,215 @@
+#---- Generated by tint2conf 3c6e ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Domyślne zadanie
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #2b2b2c 100
+border_color = #000000 48
+background_color_hover = #ffffff 20
+border_color_hover = #cfcfcf 15
+background_color_pressed = #ffffff 20
+border_color_pressed = #cfcfcf 15
+
+# Background 2:
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #1a954e 60
+border_color = #404040 100
+background_color_hover = #0abb2f 40
+border_color_hover = #292929 100
+background_color_pressed = #8c3e00 95
+border_color_pressed = #ffffff 48
+
+# Background 3: Aktywne
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #353638 100
+border_color = #000000 59
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 4: Aktywne zadanie, Nieaktywne zadanie, Panel, Zegar
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #484a4d 100
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = LTC
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 0 0 5
+panel_background_id = 4
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = normal
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.2
+autohide_hide_timeout = 1
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 1 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 2 2
+taskbar_background_id = 4
+taskbar_active_background_id = 4
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Sans 9
+taskbar_name_font_color = #696969 100
+taskbar_name_active_font_color = #40e513 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 20
+task_maximum_size = 200 32
+task_padding = 2 2 2
+task_font = Droid Sans 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #ffffff 65
+task_active_font_color = #ffffff 100
+task_urgent_font_color = #ffffff 100
+task_iconified_font_color = #ffffff 60
+task_icon_asb = 30 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 100 0 0
+task_background_id = 1
+task_active_background_id = 3
+task_urgent_background_id = 0
+task_iconified_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 6 10
+systray_background_id = 0
+systray_sort = left2right
+systray_icon_size = 22
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 2
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 30
+launcher_icon_asb = 100 0 0
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Trebuchet MS 9
+time1_timezone =
+time2_timezone =
+clock_font_color = #ffffff 80
+clock_padding = 10 6
+clock_background_id = 4
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = Liberation Mono 8
+bat2_font = Liberation Mono 8
+battery_font_color = #b5b5b5 100
+bat1_format =
+bat2_format =
+battery_padding = 2 0
+battery_background_id = 0
+battery_hide = 96
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.1
+tooltip_hide_timeout = 0.1
+tooltip_padding = 10 10
+tooltip_background_id = 0
+tooltip_font_color = #ffffff 100
+tooltip_font = Droid Sans 9
+
diff --git a/lang/pl/conky/CB-Left.conkyrc b/lang/pl/conky/CB-Left.conkyrc
new file mode 100644
index 0000000..003daa3
--- /dev/null
+++ b/lang/pl/conky/CB-Left.conkyrc
@@ -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 = [[
+${alignr}S Y S T E M I N F O
+${membar 0}
+Host:${alignr}${nodename}
+Uptime:${alignr}${uptime}
+RAM:$alignr${mem} / ${memmax}
+Swap usage:${alignr}${swap} / ${swapmax}
+Root usage:$alignr${fs_used /} / ${fs_size /}
+Home usage:$alignr${fs_used /home} / ${fs_size /home}
+CPU Average:${alignr}${cpu cpu0}%
+
+
+${alignr}S H O R T C U T K E Y S
+${membar 0}
+Alt + F2${alignr}Run Dialog
+Alt + F3${alignr}Alt Menu
+Super + Space${alignr}Main Menu
+Super + Tab${alignr}Client Menu
+Super + t${alignr}Terminal
+Super + f${alignr}File Manager
+Super + e${alignr}Editor
+Super + m${alignr}Media Player
+Super + w${alignr}Web Browser
+Super + h${alignr}Task Manager
+Super + l${alignr}Lock Screen
+Super + v${alignr}Volume Control
+Super + x${alignr}Logout
+PrtSc${alignr}Screenshot
+]];
diff --git a/lang/pl/conky/CB-Right.conkyrc b/lang/pl/conky/CB-Right.conkyrc
new file mode 100644
index 0000000..f87efa1
--- /dev/null
+++ b/lang/pl/conky/CB-Right.conkyrc
@@ -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 = [[
+S Y S T E M I N F O
+${hr}
+Host:${alignr}${nodename}
+Uptime:${alignr}${uptime}
+RAM:$alignr${mem} / ${memmax}
+Swap usage:${alignr}${swap} / ${swapmax}
+Root usage:$alignr${fs_used /} / ${fs_size /}
+Home usage:$alignr${fs_used /home} / ${fs_size /home}
+CPU Average:${alignr}${cpu cpu0}%
+
+
+S H O R T C U T K E Y S
+${hr}
+Alt + F2${alignr}Run Dialog
+Alt + F3${alignr}Alt Menu
+Super + Space${alignr}Main Menu
+Super + Tab${alignr}Client Menu
+Super + t${alignr}Terminal
+Super + f${alignr}File Manager
+Super + e${alignr}Editor
+Super + m${alignr}Media Player
+Super + w${alignr}Web Browser
+Super + h${alignr}Task Manager
+Super + l${alignr}Lock Screen
+Super + v${alignr}Volume Control
+Super + x${alignr}Logout
+PrtSc${alignr}Screenshot
+]];
diff --git a/lang/pl/conky/MB-Text.conkyrc b/lang/pl/conky/MB-Text.conkyrc
new file mode 100644
index 0000000..66e1308
--- /dev/null
+++ b/lang/pl/conky/MB-Text.conkyrc
@@ -0,0 +1,121 @@
+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}
+]];
diff --git a/lang/pl/conky/grey_manjaro_JWM.conkyrc b/lang/pl/conky/grey_manjaro_JWM.conkyrc
new file mode 100644
index 0000000..2ac259f
--- /dev/null
+++ b/lang/pl/conky/grey_manjaro_JWM.conkyrc
@@ -0,0 +1,84 @@
+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 = '#777777',
+ 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}${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e}
+$alignr$color${voffset -40}$color${font Cantarell:size=18}${time %B}
+${voffset -30}${goto 40}$color${font Cantarell:size=20}${time %Y}
+#${voffset 10}$alignr$color Kraków (PL) ${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ EPKK temperature temperature 15}°C
+${font Cantarell:size=9}${goto 40}${color}CPU$alignr$cpu%
+$color2${goto 40}$alignr${cpubar 4,165}
+${voffset 5}${goto 40}$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 dysk ${color2}${fs_used /} - ${fs_size /}
+$alignr$color pamięć ${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}
+#
+$alignr${execi 1200 whoami}@${nodename}
+${voffset 10}${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
+${alignr}${color2}${font Cantarell:size=9}${alignr}jądro ${color}${kernel}
+${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
+${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_type}
+${voffset 10}${alignr}${color} dostępne aktualizacje: ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color}
+${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l}
+${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G}
+]];
diff --git a/lang/pl/conky/manjaro.conkyrc b/lang/pl/conky/manjaro.conkyrc
new file mode 100644
index 0000000..9f63554
--- /dev/null
+++ b/lang/pl/conky/manjaro.conkyrc
@@ -0,0 +1,73 @@
+conky.config = {
+--# ManjaroBox Conky Configuration Script
+--#
+--# Written by Carl Duff & Ugo Yak
+--# Modified by Aaditya Bagga (aaditya_gnulinux@zoho.com)
+--#
+--# Website: www.manjaro.org - Forum: http://forum.manjaro.org/
+--#
+
+-- Basic Settings
+
+ background = true,
+ use_xft = true,
+ font = 'sans:size=11',
+ xftalpha = 1,
+ update_interval = 1.0,
+ total_run_times = 0,
+ own_window = true,
+ own_window_transparent = true,
+ own_window_type = 'desktop',
+ own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
+ own_window_class = 'Conky',
+ double_buffer = true,
+ minimum_width = 300, minimum_height = 1,
+ maximum_width = 600,
+ draw_shades = false,
+ draw_outline = false,
+ draw_borders = false,
+ draw_graph_borders = false,
+ default_color = 'Black',
+ default_shade_color = '#000000',
+ default_outline_color = '#d9d7d6',
+ alignment = 'top_right',
+--conkymove, original value for gap_x: 5
+ gap_x = 12,
+--conkymove, original value for gap_y: 40
+ gap_y = 70,
+ no_buffers = true,
+ uppercase = false,
+ cpu_avg_samples = 2,
+ override_utf8_locale = true,
+
+--#
+--# ManjaroBox Conky Display
+--#
+};
+
+conky.text = [[
+${font sans:bold:size=18}${alignr}${color #35BF5C}${time %e} ${color #BEBEBE}${time %B}${color #35BF5C} ${time %Y}${color #BEBEBE}
+${alignr}${time %l:%M}${font sans:bold:size=15}${time %p}${voffset -8}
+${color #BEBEBE}${hr 1}${voffset -4}
+${font sans:bold:size=9}${alignr}${color #35BF5C}CPU ${color #BEBEBE}${cpu cpu0}% - ${color #35BF5C}RAM ${color #BEBEBE}$mem / $memmax
+${alignr}${color #35BF5C}HD ${color #BEBEBE}$fs_used / $fs_size${voffset 2} - ${color #35BF5C}Uptime ${color #BEBEBE}$uptime_short
+${hr 1}${voffset 6}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + f
+${alignr}${color #BEBEBE}File Manager${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + w
+${alignr}${color #BEBEBE}Web Browser${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + m
+${alignr}${color #BEBEBE}Dmenu${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + x
+${alignr}${color #BEBEBE}Oblogout${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + d
+${alignr}${color #BEBEBE}Show Desktop${voffset -5}
+
+${font sans:bold:size=9}${alignr}${color #35BF5C}Super + t
+${alignr}${color #BEBEBE}Terminal${voffset -5}
+]];
diff --git a/lang/pl/conky/manjaro_JWM.conkyrc b/lang/pl/conky/manjaro_JWM.conkyrc
new file mode 100644
index 0000000..82b026c
--- /dev/null
+++ b/lang/pl/conky/manjaro_JWM.conkyrc
@@ -0,0 +1,84 @@
+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}${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e}
+$alignr$color${voffset -40}$color${font Cantarell:size=18}${time %B}
+${voffset -30}${goto 40}$color${font Cantarell:size=20}${time %Y}
+#${voffset 10}$alignr$color Kraków (PL) ${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ EPKK temperature temperature 15}°C
+${font Cantarell:size=9}${goto 40}${color}CPU$alignr$cpu%
+$color2${goto 40}$alignr${cpubar 4,165}
+${voffset 5}${goto 40}$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 dysk ${color2}${fs_used /} - ${fs_size /}
+$alignr$color pamięć ${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}
+#
+$alignr${execi 1200 whoami}@${nodename}
+${voffset 10}${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
+${alignr}${color2}${font Cantarell:size=9}${alignr}jądro ${color}${kernel}
+${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
+${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_type}
+${voffset 10}${alignr}${color} dostępne aktualizacje: ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color}
+${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l}
+${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G}
+]];
diff --git a/lang/pl/conky/quakeworld_manjaro_JWM.conkyrc b/lang/pl/conky/quakeworld_manjaro_JWM.conkyrc
new file mode 100644
index 0000000..081b8cb
--- /dev/null
+++ b/lang/pl/conky/quakeworld_manjaro_JWM.conkyrc
@@ -0,0 +1,84 @@
+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}${voffset -18}$alignr${color3}${font Cantarell:size=38}${time %e}
+$alignr$color${voffset -40}$color${font Cantarell:size=18}${time %B}
+${voffset -30}${goto 40}$color${font Cantarell:size=20}${time %Y}
+#${voffset 10}$alignr$color Kraków (PL) ${weather http://weather.noaa.gov/pub/data/observations/metar/stations/ EPKK temperature temperature 15}°C
+${font Cantarell:size=9}${goto 40}${color}CPU$alignr$cpu%
+$color2${goto 40}$alignr${cpubar 4,165}
+${voffset 5}${goto 40}$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 dysk ${color2}${fs_used /} - ${fs_size /}
+$alignr$color pamięć ${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}
+#
+$alignr${execi 1200 whoami}@${nodename}
+${voffset 10}${alignr}${color2}${font Cantarell:size=9}uptime ${color}${uptime_short}
+${alignr}${color2}${font Cantarell:size=9}${alignr}jądro ${color}${kernel}
+${alignr}${color2}${font Cantarell:size=9}${alignr}arch ${color}${machine}
+${alignr}${color2}${font Cantarell:size=9}${alignr}system plików ${color}${fs_type}
+${voffset 10}${alignr}${color} dostępne aktualizacje: ${color3}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq | wc -l}${color}
+${alignr}${color}${font} zainstalowane pakiety: ${color2}${execi 10000 pacman -Q | wc -l}
+${alignr}${color} gałąź: ${color2}${execi 10000 pacman-mirrors -G}
+]];
diff --git a/lang/pl/conky/shortcuts_green.conkyrc b/lang/pl/conky/shortcuts_green.conkyrc
new file mode 100644
index 0000000..09b87f1
--- /dev/null
+++ b/lang/pl/conky/shortcuts_green.conkyrc
@@ -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 = 15,
+ 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}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}menedżer plików ${alignr}${color}super+f
+${color2}przeglądarka www ${alignr}${color}super+w
+${color2}terminal ${alignr}${color}super+t
+${color2}kontrola głośności ${alignr}${color}super+v
+${color2}menu ${alignr}${color}super / super+spacja
+${color2}uruchom... ${alignr}${color}super+m / alt+F2
+${color2}zrzuty ekranu... ${alignr}${color}PrtScr
+${color2}wł/wył Compton ${alignr}${color}super+c
+${color2}blokuj ekran ${alignr}${color}super+l
+${color2}xkill ${alignr}${color}super+k
+${color2}wyjście ${alignr}${color}super+x
+${color}PANELE${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}miejsca (lewy) ${alignr} ${color}ctrl+TAB
+${color2}ustawienia (prawy) ${alignr} ${color}super+TAB
+${color2}pokaż/ukryj DOK (Gkrellm) ${alignr} ${color}super+alt+d
+${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+[F1..F4]
+]];
diff --git a/lang/pl/conky/shortcuts_grey.conkyrc b/lang/pl/conky/shortcuts_grey.conkyrc
new file mode 100644
index 0000000..625ca0f
--- /dev/null
+++ b/lang/pl/conky/shortcuts_grey.conkyrc
@@ -0,0 +1,121 @@
+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: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 = '#777777',
+ color3 = '#9ACD32',-- YellowGreen
+ color4 = '#FFA07A',-- LightSalmon
+ color5 = '#FFDEAD',-- NavajoWhite
+ color6 = '#00BFFF',-- DeepSkyBlue
+ color7 = '#5F9EA0',-- CadetBlue
+ color8 = '#BDB76B',-- DarkKhaki
+ color9 = '#CD5C5C',-- IndianRed
+
+-- BORDERS
+ draw_borders = 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}menedżer plików ${alignr}${color}super+f
+${color2}przeglądarka www ${alignr}${color}super+w
+${color2}terminal ${alignr}${color}super+t
+${color2}kontrola głośności ${alignr}${color}super+v
+${color2}menu ${alignr}${color}super / super+spacja
+${color2}uruchom... ${alignr}${color}super+m / alt+F2
+${color2}zrzuty ekranu... ${alignr}${color}PrtScr
+${color2}wł/wył Compton ${alignr}${color}super+c
+${color2}blokuj ekran ${alignr}${color}super+l
+${color2}xkill ${alignr}${color}super+k
+${color2}wyjście ${alignr}${color}super+x
+${color}PANELE${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}miejsca (lewy) ${alignr} ${color}ctrl+TAB
+${color2}ustawienia (prawy) ${alignr} ${color}super+TAB
+${color2}pokaż/ukryj DOK (Gkrellm) ${alignr} ${color}super+alt+d
+${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+[F1..F4]
+]];
diff --git a/lang/pl/conky/shortcuts_quakeworld.conkyrc b/lang/pl/conky/shortcuts_quakeworld.conkyrc
new file mode 100644
index 0000000..8d3fa4e
--- /dev/null
+++ b/lang/pl/conky/shortcuts_quakeworld.conkyrc
@@ -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 = 15,
+ 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}PROGRAMY${alignr}${color2}super to windows key${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}menedżer plików ${alignr}${color}super+f
+${color2}przeglądarka www ${alignr}${color}super+w
+${color2}terminal ${alignr}${color}super+t
+${color2}kontrola głośności ${alignr}${color}super+v
+${color2}menu ${alignr}${color}super / super+spacja
+${color2}uruchom... ${alignr}${color}super+m / alt+F2
+${color2}zrzuty ekranu... ${alignr}${color}PrtScr
+${color2}wł/wył Compton ${alignr}${color}super+c
+${color2}blokuj ekran ${alignr}${color}super+l
+${color2}xkill ${alignr}${color}super+k
+${color2}wyjście ${alignr}${color}super+x
+${color}PANELE${voffset -6}
+${color2}${hr 1}${voffset -4}
+${color2}miejsca (lewy) ${alignr} ${color}ctrl+TAB
+${color2}ustawienia (prawy) ${alignr} ${color}super+TAB
+${color2}pokaż/ukryj DOK (Gkrellm) ${alignr} ${color}super+alt+d
+${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+[F1..F4]
+]];
diff --git a/lang/pl/jgmenu/prepend.csv b/lang/pl/jgmenu/prepend.csv
new file mode 100644
index 0000000..47821e6
--- /dev/null
+++ b/lang/pl/jgmenu/prepend.csv
@@ -0,0 +1,61 @@
+@search,,44,6,150,20,2,left,top,auto,#000000 0,Pisz aby wyszukać
+^sep()
+Terminal,exo-open --launch TerminalEmulator,utilities-terminal
+Przeglądarka WWW,exo-open --launch WebBrowser,firefox
+Menedżer plików,exo-open --launch FileManager,system-file-manager
+^sep()
+Aplikacje,^checkout(lx-apps),applications-other
+
+^sep()
+Zrzut ekranu,mb-jgtools screenshot,emblem-photos
+^sep()
+Ustawienia,^checkout(ustawienia),applications-utilities
+^sep()
+Zablokuj ekran,betterlockscreen -l,system-lock-screen
+Wyjście,mb-jgtools mblogout,system-shutdown
+
+^tag(ustawienia)
+
+Centrum Sterowania Mabox,mcc,distributor-logo-mabox
+^sep(Pulpit)
+Wystrój i ikony,lxappearance,preferences-desktop-theme
+Tapeta,nitrogen,nitrogen
+Powiadomienia,xfce4-notifyd-config,xfce4-notifyd
+Zarządzaj Conky,^pipe(jgmenu_run ob --cmd=mabox-conky-pipemenu),desktop-effects
+Zarządzaj panelami tint2,^pipe(jgmenu_run ob --cmd=mabox-tint2-pipemenu),tint2conf
+Kompozytor,^pipe(jgmenu_run ob --cmd=mabox-compositor),compton
+Menu,^checkout(menu),menu-editor
+^sep(Ustawienia)
+Preferowane aplikacje,exo-preferred-applications,preferences-desktop-default-applications
+Menedżer logowania,lightdm-gtk-greeter-settings-pkexec,lightdm-gtk-greeter-settings
+Ustawienia zasilania,xfce4-power-manager-settings,xfce4-power-manager-settings
+^sep(Openbox)
+Autostart,^checkout(autostart),geany
+RC - plik konfiguracyjny,geany ~/.config/openbox/rc.xml,geany
+
+Rekonfiguruj Openbox,openbox --reconfigure,openbox
+^sep(Motywy Maboxa)
+Zarządzaj motywami,mb-obthemes,preferences-desktop-theme
+^sep(Pomoc)
+Przewodnik Użytkownika (online),^checkout(userguide),distributor-logo-mabox
+Forum dyskusyjne Mabox,exo-open --launch WebBrowser https://forum.maboxlinux.org/,distributor-logo-mabox
+^tag(autostart)
+Wybierz programy/usługi (GUI Edytor),yautostart
+Edycja pliku (zaawansowane),geany ~/.config/openbox/autostart,geany
+^tag(userguide)
+. /usr/share/mb-jgtools/userguide_PL.csv
+^tag(menu)
+Edytuj pozycje menu,geany ~/.config/jgmenu/prepend.csv,geany
+Edytuj ustawienia,geany ~/.config/mabox/mabox.conf,geany
+Rozmiar,^checkout(rozmiar)
+^tag(rozmiar)
+malutki,cat ~/.config/mabox/tiny > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+mały,cat ~/.config/mabox/small > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+normalny,cat ~/.config/mabox/normal > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+duży,cat ~/.config/mabox/big > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+wielki,cat ~/.config/mabox/huge > ~/.config/mabox/jgmenusize.conf && mb-jgtools main
+^tag(lx-apps)
+
+
+
+
diff --git a/lang/pl/mabox/exit.csv b/lang/pl/mabox/exit.csv
new file mode 100644
index 0000000..ec8a830
--- /dev/null
+++ b/lang/pl/mabox/exit.csv
@@ -0,0 +1,11 @@
+## Dodaj znak komentarza # w liniach które chcesz ukryć
+^sep(Wyjście...)
+Wyloguj,openbox --exit,system-logout
+Uśpij,systemctl suspend,system-suspend
+Hibernuj,systemctl hibernate,system-hibernate
+Uruchom ponownie,systemctl reboot,system-reboot
+Zablokuj ekran, betterlockscreen -l,system-lock-screen
+Wyłącz,systemctl poweroff,system-shutdown
+^sep()
+Dostosuj opcje wyjścia,geany $HOME/.config/mabox/exit.csv,geany
+
diff --git a/lang/pl/mabox/jgtype.csv b/lang/pl/mabox/jgtype.csv
new file mode 100644
index 0000000..536bc0e
--- /dev/null
+++ b/lang/pl/mabox/jgtype.csv
@@ -0,0 +1,25 @@
+^sep(jgtype - pomocnik wpisywania komend)
+Aktualizacje,^checkout(updates)
+Mirrory i klucze,^checkout(mirrors)
+^sep()
+Konfiguruj,geany ~/.config/mabox/jgtype.csv
+Pomoc,
+^sep()
+
+
+
+#TAGS
+^tag(updates)
+^sep(Pacman)
+Aktualizacja sudo pacman -Syu,jgtype "sudo pacman -Syu"
+Odśw. baz + aktualizacja sudo pacman -Syyu,jgtype "sudo pacman -Syyu"
+^sep(Yay)
+Aktualizacja yay,jgtype "yay"
+Odśw. baz + aktualizacja yay -Syyu,jgtype "yay -Syyu"
+
+^tag(mirrors)
+^sep(Ustaw Mirrory)
+Szybko sudo pacman-mirrors -f5,jgtype "sudo pacman-mirrors -f5"
+Najbliższe wg GeoIP sudo pacman-mirrors -i --geoip, jgtype "sudo pacman-mirrors -i --geoip"
+Wszystkie sudo pacman-mirrors -i -c all,jgtype "sudo pacman-mirrors -i -c all"
+
diff --git a/lang/pl/mabox/places-append.csv b/lang/pl/mabox/places-append.csv
new file mode 100644
index 0000000..52b06b6
--- /dev/null
+++ b/lang/pl/mabox/places-append.csv
@@ -0,0 +1,2 @@
+#^sep(Własne)
+#Dostosuj...,geany $HOME/.config/mabox/places-append.csv,add
diff --git a/lang/pl/mabox/places-prepend.csv b/lang/pl/mabox/places-prepend.csv
new file mode 100644
index 0000000..f021b8c
--- /dev/null
+++ b/lang/pl/mabox/places-prepend.csv
@@ -0,0 +1,2 @@
+^sep(Narzędzia)
+Wyszukiwarka FSearch, fsearch
diff --git a/lang/pl/mabox/right-append.csv b/lang/pl/mabox/right-append.csv
new file mode 100644
index 0000000..55d4fc7
--- /dev/null
+++ b/lang/pl/mabox/right-append.csv
@@ -0,0 +1,6 @@
+# Tutaj możesz dodać własne polecenia
+# Format:
+# Etykieta,komenda,ikona
+# Przykład:
+^sep(Własne Polecenia)
+Dostosuj...,geany $HOME/.config/mabox/right-append.csv,add
diff --git a/lang/pl/mabox/right-prepend.csv b/lang/pl/mabox/right-prepend.csv
new file mode 100644
index 0000000..e1b240d
--- /dev/null
+++ b/lang/pl/mabox/right-prepend.csv
@@ -0,0 +1,5 @@
+# Format:
+# Etykieta,komenda,ikona
+# Przykład:
+#^sep(Moje)
+#Odtwarzacz VLC,vlc
diff --git a/lang/pl/tint2/DatkMaia-top.tint2rc b/lang/pl/tint2/DatkMaia-top.tint2rc
new file mode 100644
index 0000000..9e4b007
--- /dev/null
+++ b/lang/pl/tint2/DatkMaia-top.tint2rc
@@ -0,0 +1,300 @@
+#---- Generated by tint2conf fe75 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Nazwa nieaktywnego pulpitu, Programy, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 2:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #1f292d 100
+border_color = #1f292d 100
+background_color_hover = #2c3a40 100
+border_color_hover = #ffffff 50
+background_color_pressed = #000000 100
+border_color_pressed = #ffffff 100
+
+# Background 3:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 4:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #3fa9f5 30
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 5:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #ffffff 50
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 6: Aktywne, Aktywne zadanie, Domyślne zadanie, Nazwa aktywnego pulpitu, Nieaktywne zadanie, Normalne zadanie, Panel, Pilne, Podpowiedzi, Zminimalizowane
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 66
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 7:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 8:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #cf3145 30
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+#-------------------------------------
+# Panel
+panel_items = PP
+panel_size = 60 20
+panel_margin = 0 0
+panel_padding = 0 0 2
+panel_background_id = 6
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top left horizontal
+panel_layer = normal
+panel_monitor = 1
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 25
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 1
+taskbar_background_id = 6
+taskbar_active_background_id = 6
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 1
+taskbar_name_active_background_id = 6
+taskbar_name_font = Liberation Sans Bold 10
+taskbar_name_font_color = #1c3c32 100
+taskbar_name_active_font_color = #12652e 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 0
+task_centered = 1
+urgent_nb_of_blink = 65535
+task_maximum_size = 1 1
+task_padding = 0 0 0
+task_tooltip = 0
+task_thumbnail = 0
+task_thumbnail_size = 140
+task_font_color = #e7e7e7 80
+task_normal_font_color = #e7e7e7 80
+task_urgent_font_color = #e7e7e7 100
+task_icon_asb = 100 0 0
+task_normal_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 10
+task_iconified_icon_asb = 100 0 0
+task_background_id = 6
+task_normal_background_id = 6
+task_active_background_id = 6
+task_urgent_background_id = 6
+task_iconified_background_id = 6
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle_iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 10 10 10
+systray_background_id = 1
+systray_sort = ascending
+systray_icon_size = 32
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter = ^ClipIt*
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 0 16
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 38
+launcher_icon_asb = 95 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 0
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Noto Sans Bold 9
+time1_timezone =
+time2_timezone =
+clock_font_color = #c0c0c0 100
+clock_padding = 0 6
+clock_background_id = 1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 0
+battery_low_cmd =
+battery_full_cmd =
+battery_font_color = #000000 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Lewy panel - Miejsca (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 8 0
+button_background_id = 0
+button_centered = 1
+button_max_icon_size = 14
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 8 0
+button_background_id = 0
+button_centered = 1
+button_max_icon_size = 14
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 10 5
+tooltip_background_id = 6
+tooltip_font_color = #e7e7e7 80
+tooltip_font = Fira Mono 9
+
diff --git a/lang/pl/tint2/RainForest.tint2rc b/lang/pl/tint2/RainForest.tint2rc
new file mode 100644
index 0000000..b4e5120
--- /dev/null
+++ b/lang/pl/tint2/RainForest.tint2rc
@@ -0,0 +1,318 @@
+#---- Generated by tint2conf a9df ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Aktywne zadanie, Nieaktywne zadanie, Panel, Programy
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #dae6d2 100
+border_color = #ffffff 0
+background_color_hover = #ffffff 100
+border_color_hover = #ffffff 0
+background_color_pressed = #ffffff 100
+border_color_pressed = #ffffff 0
+
+# Background 2: Aktywne
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #5f8a45 100
+background_color_hover = #5c616c 5
+border_color_hover = #66bb6a 60
+background_color_pressed = #5c616c 10
+border_color_pressed = #66bb6a 80
+
+# Background 3: Domyślne zadanie, Zminimalizowane
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #5c616c 100
+background_color_hover = #5c616c 5
+border_color_hover = #5c616c 60
+background_color_pressed = #5c616c 5
+border_color_pressed = #5c616c 80
+
+# Background 4: Pilne
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #dc143c 100
+background_color_hover = #5c616c 15
+border_color_hover = #dc143c 60
+background_color_pressed = #5c616c 20
+border_color_pressed = #000000 80
+
+# Background 5: Nazwa nieaktywnego pulpitu
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #ffffff 0
+background_color_hover = #ffffff 0
+border_color_hover = #ffffff 0
+background_color_pressed = #ffffff 0
+border_color_pressed = #ffffff 0
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 0
+border_width = 0
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 0
+border_color = #66bb6a 80
+background_color_hover = #ffffff 0
+border_color_hover = #66bb6a 70
+background_color_pressed = #ffffff 0
+border_color_pressed = #66bb6a 60
+
+# Background 7: Podpowiedzi
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 100
+border_color = #66bb6a 80
+background_color_hover = #ffffff 80
+border_color_hover = #66bb6a 80
+background_color_pressed = #ffffff 80
+border_color_pressed = #66bb6a 80
+
+# Background 8: Bateria, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 0
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #5f8a45 100
+border_color = #ffffff 0
+background_color_hover = #66bb6a 100
+border_color_hover = #ffffff 0
+background_color_pressed = #66bb6a 100
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = PPLTSBCP
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 0 0 0
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.5
+autohide_hide_timeout = 2
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 4
+taskbar_background_id = 1
+taskbar_active_background_id = 1
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 8 8
+taskbar_name_background_id = 5
+taskbar_name_active_background_id = 6
+taskbar_name_font = Ubuntu Condensed Bold 12
+taskbar_name_font_color = #5c5c5c 100
+taskbar_name_active_font_color = #353535 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 20
+task_maximum_size = 150 40
+task_padding = 2 2 2
+task_font = Ubuntu Condensed Regular 11
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #5c616c 100
+task_active_font_color = #5f8a45 100
+task_urgent_font_color = #dc143c 100
+task_iconified_font_color = #5c616c 85
+task_icon_asb = 80 0 0
+task_active_icon_asb = 100 0 10
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 80 0 0
+task_background_id = 3
+task_active_background_id = 2
+task_urgent_background_id = 4
+task_iconified_background_id = 3
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = none
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 7 0 5
+systray_background_id = 8
+systray_sort = ascending
+systray_icon_size = 24
+systray_icon_asb = 100 0 10
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 0 8
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 24
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = gnome-wise
+launcher_icon_theme_override = 1
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+
+#-------------------------------------
+# Clock
+time1_format = %I:%M %d %b
+time2_format =
+time1_font = Ubuntu Condensed Bold 13
+time1_timezone =
+time2_timezone =
+time2_font = Ubuntu Condensed Bold 10
+clock_font_color = #ffffff 100
+clock_padding = 6 0
+clock_background_id = 8
+clock_tooltip = Dzisiaj jest %A, %e dzień %B !
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = gsimplecal
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd = notify-send "Battery Low !"
+battery_full_cmd =
+bat1_font = Ubuntu Condensed Bold 12
+bat2_font = Ubuntu Condensed Regular 0
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 5 5
+battery_background_id = 8
+battery_hide = 101
+battery_lclick_command = xfce4-power-manager-settings
+battery_rclick_command = xfce4-power-manager-settings
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Lewy panel - Miejsca (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Lewy -> Menu główne, Prawy -> Menu ustawień
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 24
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 5 3
+tooltip_background_id = 7
+tooltip_font_color = #353535 100
+tooltip_font = Noto Sans 10
+
diff --git a/lang/pl/tint2/Vertical_Left.tint2rc b/lang/pl/tint2/Vertical_Left.tint2rc
new file mode 100644
index 0000000..073764a
--- /dev/null
+++ b/lang/pl/tint2/Vertical_Left.tint2rc
@@ -0,0 +1,301 @@
+#---- Generated by tint2conf 61d4 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Aktywne zadanie, Nazwa nieaktywnego pulpitu, Nieaktywne zadanie, Pilne, Programy, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 2:
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #1f292d 100
+border_color = #1f292d 100
+background_color_hover = #2c3a40 100
+border_color_hover = #ffffff 50
+background_color_pressed = #000000 100
+border_color_pressed = #ffffff 100
+
+# Background 3: Domyślne zadanie, Normalne zadanie
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 4: Aktywne
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #3fa9f5 30
+border_color = #3fa9f5 90
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 5: Zminimalizowane
+rounded = 0
+border_width = 2
+border_sides = L
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #ffffff 50
+background_color_hover = #e20c57 30
+border_color_hover = #e20c57 90
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 6: Panel, Podpowiedzi
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 66
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 7:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111618 0
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+# Background 8:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #cf3145 30
+border_color = #111618 100
+background_color_hover = #181818 0
+border_color_hover = #303030 0
+background_color_pressed = #181818 0
+border_color_pressed = #303030 0
+
+#-------------------------------------
+# Panel
+panel_items = PLTBSCP
+panel_size = 100% 60
+panel_margin = 0 20
+panel_padding = 0 0 0
+panel_background_id = 6
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top left vertical
+panel_layer = normal
+panel_monitor = 1
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 25
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 1
+taskbar_background_id = 1
+taskbar_active_background_id = 1
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 1
+taskbar_name_active_background_id = 0
+taskbar_name_font = Liberation Sans Bold 10
+taskbar_name_font_color = #000000 100
+taskbar_name_active_font_color = #000000 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 65535
+task_maximum_size = 54 58
+task_padding = 10 8 12
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 140
+task_font_color = #e7e7e7 80
+task_normal_font_color = #e7e7e7 80
+task_urgent_font_color = #e7e7e7 100
+task_icon_asb = 100 0 0
+task_normal_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 10
+task_iconified_icon_asb = 100 0 0
+task_background_id = 3
+task_normal_background_id = 3
+task_active_background_id = 4
+task_urgent_background_id = 1
+task_iconified_background_id = 5
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle_iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 10 10 10
+systray_background_id = 1
+systray_sort = ascending
+systray_icon_size = 32
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter = ^ClipIt*
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 0 16
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 38
+launcher_icon_asb = 95 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 0
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Noto Sans Bold 10
+time1_timezone =
+time2_timezone =
+time2_font = Droid Sans 10
+clock_font_color = #c0c0c0 100
+clock_padding = 0 6
+clock_background_id = 1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 0
+battery_low_cmd =
+battery_full_cmd =
+battery_font_color = #000000 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Lewy ->Główne menu, Prawy - Menu ustawień
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command = mb-jgtools places
+button_dwheel_command = mb-jgtools right
+button_font_color = #000000 100
+button_padding = 10 10
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = exit
+button_text =
+button_tooltip = Zakończ
+button_lclick_command = mb-jgtools mblogout
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 10 10
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 10 5
+tooltip_background_id = 6
+tooltip_font_color = #e7e7e7 80
+tooltip_font = Fira Mono 9
+
diff --git a/lang/pl/tint2/desktop_switch.tint2rc b/lang/pl/tint2/desktop_switch.tint2rc
new file mode 100644
index 0000000..cebb6fb
--- /dev/null
+++ b/lang/pl/tint2/desktop_switch.tint2rc
@@ -0,0 +1,232 @@
+#---- Generated by tint2conf 068a ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 0
+background_color_hover = #000000 0
+border_color_hover = #000000 0
+background_color_pressed = #000000 0
+border_color_pressed = #000000 0
+
+# Background 2: Podpowiedzi
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 10
+border_color = #000000 90
+background_color_hover = #000000 10
+border_color_hover = #000000 90
+background_color_pressed = #000000 10
+border_color_pressed = #000000 90
+
+# Background 3: Nieaktywne zadanie
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 10
+border_color = #000000 0
+background_color_hover = #ffffff 10
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 10
+border_color_pressed = #000000 0
+
+# Background 4: Aktywne zadanie
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 40
+border_color = #000000 0
+background_color_hover = #ffffff 40
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 40
+border_color_pressed = #000000 0
+
+# Background 5: Domyślne zadanie, Zminimalizowane
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 10
+border_color = #000000 0
+background_color_hover = #ffffff 10
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 10
+border_color_pressed = #000000 0
+
+# Background 6: Aktywne, Pilne
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 20
+border_color = #000000 0
+background_color_hover = #ffffff 20
+border_color_hover = #000000 0
+background_color_pressed = #ffffff 20
+border_color_pressed = #000000 0
+
+#-------------------------------------
+# Panel
+panel_items = T
+panel_size = 60% 80
+panel_margin = 10 26
+panel_padding = 10 10 10
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = bottom
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 1.5
+autohide_height = 6
+strut_policy = none
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 10 10 10
+taskbar_background_id = 3
+taskbar_active_background_id = 4
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Droid Sans 9
+taskbar_name_font_color = #888888 100
+taskbar_name_active_font_color = #eeeeee 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 0
+task_centered = 1
+urgent_nb_of_blink = 20
+task_maximum_size = 300 40
+task_padding = 2 2 2
+task_font = Droid Sans 06_55 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #aaaaaa 69
+task_active_font_color = #eeeeee 100
+task_urgent_font_color = #064d99 100
+task_iconified_font_color = #aaaaaa 60
+task_icon_asb = 80 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 80 0 0
+task_background_id = 5
+task_active_background_id = 6
+task_urgent_background_id = 6
+task_iconified_background_id = 5
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 0
+systray_background_id = -1
+systray_sort = ascending
+systray_icon_size = 0
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 0
+launcher_background_id = -1
+launcher_icon_background_id = -1
+launcher_icon_size = 0
+launcher_icon_asb = 100 0 0
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 0
+
+#-------------------------------------
+# Clock
+time1_format =
+time2_format =
+time1_timezone =
+time2_timezone =
+clock_font_color = #000000 100
+clock_padding = 0 0
+clock_background_id = -1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command =
+clock_rclick_command =
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 0
+battery_low_cmd =
+battery_full_cmd =
+battery_font_color = #000000 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = -1
+battery_hide = 0
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 10 10
+tooltip_background_id = 2
+tooltip_font_color = #d8d8d8 100
+tooltip_font = Droid Sans normal 10.0
+
diff --git a/lang/pl/tint2/dock.tint2rc b/lang/pl/tint2/dock.tint2rc
new file mode 100644
index 0000000..88cbb79
--- /dev/null
+++ b/lang/pl/tint2/dock.tint2rc
@@ -0,0 +1,269 @@
+#---- Generated by tint2conf 48a8 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 5
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #269b29 0
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Domyślne zadanie
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3: Programy
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #787373 0
+border_color = #9a9a9a 100
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Aktywne
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Podpowiedzi
+rounded = 6
+border_width = 2
+border_sides = B
+border_content_tint_weight = 2
+background_content_tint_weight = 2
+background_color = #383838 69
+border_color = #ffffff 58
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #787373 100
+border_color = #ffffff 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 7: Nazwa nieaktywnego pulpitu, Zasobnik systemowy, Zegar
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 50
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = LP
+panel_size = 100% 96
+panel_margin = 0 0
+panel_padding = 0 1 4
+panel_background_id = 1
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = normal
+panel_monitor = all
+panel_shrink = 1
+autohide = 1
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 5
+strut_policy = minimum
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 1
+mouse_hover_icon_asb = 100 0 20
+mouse_pressed_icon_asb = 100 1 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 0 4
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 10 0
+taskbar_name_background_id = 7
+taskbar_name_active_background_id = 6
+taskbar_name_font = Noto Sans 8
+taskbar_name_font_color = #bdbdbd 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 140 24
+task_padding = 1 0 5
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 8 0 0
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 20
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 8 8
+launcher_background_id = 3
+launcher_icon_background_id = 0
+launcher_icon_size = 64
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
+launcher_item_app = /usr/share/applications/show_desktop.desktop
+launcher_item_app = /usr/share/applications/exo-file-manager.desktop
+launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = /usr/share/applications/exo-web-browser.desktop
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 8 0
+clock_background_id = 7
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command =
+clock_rclick_command = gsimplecal
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_text =
+button_tooltip = Edytuj ten dok
+button_lclick_command = tint2conf $HOME/.config/tint2/dock.tint2rc
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font = Noto Sans 24
+button_font_color = #30b746 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 1
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/pl/tint2/fullwidth_transp_dark.tint2rc b/lang/pl/tint2/fullwidth_transp_dark.tint2rc
new file mode 100644
index 0000000..56fdffd
--- /dev/null
+++ b/lang/pl/tint2/fullwidth_transp_dark.tint2rc
@@ -0,0 +1,311 @@
+#---- Generated by tint2conf d246 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Domyślne zadanie, Programy, Zminimalizowane
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 0
+background_color_hover = #000000 0
+border_color_hover = #000000 0
+background_color_pressed = #000000 0
+border_color_pressed = #000000 0
+
+# Background 2:
+rounded = 3
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 30
+border_color = #ffffff 0
+background_color_hover = #ffffff 30
+border_color_hover = #ffffff 0
+background_color_pressed = #ffffff 30
+border_color_pressed = #ffffff 0
+
+# Background 3: Pilne
+rounded = 3
+border_width = 2
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4285f4 30
+border_color = #4285f4 100
+background_color_hover = #4285f4 30
+border_color_hover = #4285f4 100
+background_color_pressed = #4285f4 30
+border_color_pressed = #4285f4 100
+
+# Background 4: Aktywne, Button, Panel
+rounded = 2
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 40
+border_color = #000000 50
+background_color_hover = #000000 40
+border_color_hover = #000000 50
+background_color_pressed = #000000 40
+border_color_pressed = #000000 50
+
+# Background 5: Podpowiedzi
+rounded = 3
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 100
+border_color = #000000 0
+background_color_hover = #000000 100
+border_color_hover = #000000 0
+background_color_pressed = #000000 100
+border_color_pressed = #000000 0
+
+# Background 6: Nieaktywne zadanie
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 50
+border_color = #000000 0
+background_color_hover = #000000 50
+border_color_hover = #000000 0
+background_color_pressed = #000000 50
+border_color_pressed = #000000 0
+
+#-------------------------------------
+# Panel
+panel_items = P:L:TS:C:P
+panel_size = 100% 40
+panel_margin = 0 0
+panel_padding = 0 0 0
+panel_background_id = 4
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.5
+autohide_hide_timeout = 0.5
+autohide_height = 5
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 10 0 20
+taskbar_background_id = 6
+taskbar_active_background_id = 0
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Montserrat 8
+taskbar_name_font_color = #ffffff 20
+taskbar_name_active_font_color = #ffffff 40
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 5
+task_maximum_size = 180 5
+task_padding = 10 10 10
+task_font = Source Sans Pro 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #ffffff 80
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 100
+task_iconified_font_color = #d8d8d8 60
+task_icon_asb = 50 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 100 0 0
+task_background_id = 1
+task_active_background_id = 4
+task_urgent_background_id = 3
+task_iconified_background_id = 1
+mouse_left = toggle_iconify
+mouse_middle = none
+mouse_right = close
+mouse_scroll_up = none
+mouse_scroll_down = none
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 10
+systray_background_id = 0
+systray_sort = right2left
+systray_icon_size = 22
+systray_icon_asb = 30 0 50
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 2 2 10
+launcher_background_id = 1
+launcher_icon_background_id = 0
+launcher_icon_size = 28
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Numix-Square-Light
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Source Sans Pro Semi-Bold 11
+time1_timezone =
+time2_timezone =
+clock_font_color = #aaaaaa 100
+clock_padding = 10 0
+clock_background_id = 0
+clock_tooltip = Lewy -> kalendarz, Prawy - ustawienia daty i czasu
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 0
+battery_low_status = 100
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = Liberation Mono 8
+bat2_font = Liberation Mono 8
+battery_font_color = #b5b5b5 100
+bat1_format =
+bat2_format =
+battery_padding = 2 0
+battery_background_id = 0
+battery_hide = 100
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Separator 1
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 15
+separator_padding = 1 0
+
+#-------------------------------------
+# Separator 2
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 5
+separator_padding = 1 0
+
+#-------------------------------------
+# Separator 3
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 5
+separator_padding = 1 0
+
+#-------------------------------------
+# Separator 4
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = empty
+separator_size = 5
+separator_padding = 1 0
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = ~/.config/tint2/menu.png
+button_text =
+button_tooltip = Lewy -> Menu główne, Prawy -> Menu ustawień
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 4
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = ~/.config/tint2/session.png
+button_text =
+button_tooltip = Wyjście... (win + x)
+button_lclick_command = mb-jgtools mblogout ipc
+button_rclick_command = sudo sync && notify-send "Sync complete"
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 12 12
+button_background_id = 4
+button_centered = 1
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 4 4
+tooltip_background_id = 5
+tooltip_font_color = #ffffff 72
+tooltip_font = Sans normal 10
+
diff --git a/lang/pl/tint2/gradient.tint2rc b/lang/pl/tint2/gradient.tint2rc
new file mode 100644
index 0000000..0796eac
--- /dev/null
+++ b/lang/pl/tint2/gradient.tint2rc
@@ -0,0 +1,338 @@
+#---- Generated by tint2conf ce38 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+# Gradient 1
+gradient = vertical
+start_color = #393939 100
+end_color = #131313 100
+color_stop = 50.000000 #4a4a4a 100
+
+# Gradient 2
+gradient = horizontal
+start_color = #323232 100
+end_color = #262626 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 4.000000 #47c247 100
+color_stop = 6.000000 #47c247 100
+color_stop = 6.000000 #47c247 100
+
+# Gradient 3
+gradient = vertical
+start_color = #161616 100
+end_color = #464646 100
+
+# Gradient 4
+gradient = vertical
+start_color = #b34235 100
+end_color = #8f342a 100
+
+# Gradient 5
+gradient = vertical
+start_color = #232323 100
+end_color = #171717 100
+
+#-------------------------------------
+# Backgrounds
+# Background 1: Zminimalizowane
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #363636 100
+border_color = #404040 100
+gradient_id = 1
+background_color_hover = #363636 100
+border_color_hover = #0f0f0f 100
+background_color_pressed = #363636 100
+border_color_pressed = #0f0f0f 100
+
+# Background 2:
+rounded = 3
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #161616 100
+border_color = #161616 100
+gradient_id = 1
+background_color_hover = #161616 100
+border_color_hover = #161616 100
+background_color_pressed = #161616 100
+border_color_pressed = #161616 100
+
+# Background 3:
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #292929 100
+border_color = #161616 100
+gradient_id = 2
+background_color_hover = #292929 100
+border_color_hover = #161616 100
+background_color_pressed = #292929 100
+border_color_pressed = #161616 100
+
+# Background 4: Aktywne, Domyślne zadanie, Nazwa aktywnego pulpitu, Nazwa nieaktywnego pulpitu
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 20
+background_content_tint_weight = 0
+background_color = #464646 100
+border_color = #0f0f0f 100
+gradient_id = 3
+background_color_hover = #464646 100
+border_color_hover = #0f0f0f 100
+background_color_pressed = #464646 100
+border_color_pressed = #0f0f0f 100
+
+# Background 5: Pilne
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #a54d4d 100
+border_color = #ffde00 100
+gradient_id = 4
+background_color_hover = #a54d4d 100
+border_color_hover = #ffde00 100
+background_color_pressed = #a54d4d 100
+border_color_pressed = #ffde00 100
+
+# Background 6: Podpowiedzi
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #e7e7f0 40
+border_color = #161616 40
+background_color_hover = #e7e7f0 40
+border_color_hover = #161616 40
+background_color_pressed = #e7e7f0 40
+border_color_pressed = #161616 40
+
+# Background 7: Aktywne zadanie, Bateria, Nieaktywne zadanie, Panel, Zasobnik systemowy, Zegar
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #161616 100
+border_color = #161616 100
+gradient_id = 1
+background_color_hover = #161616 100
+border_color_hover = #161616 100
+background_color_pressed = #161616 100
+border_color_pressed = #161616 100
+
+#-------------------------------------
+# Panel
+panel_items = PLT:S:B:C
+panel_size = 96% 40
+panel_margin = 0 0
+panel_padding = 2 2 2
+panel_background_id = 7
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.7
+autohide_hide_timeout = 1.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 2 2
+taskbar_background_id = 7
+taskbar_active_background_id = 7
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 8 0
+taskbar_name_background_id = 4
+taskbar_name_active_background_id = 4
+taskbar_name_font = Ubuntu 10
+taskbar_name_font_color = #a1a1a1 23
+taskbar_name_active_font_color = #f3f3ff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 10
+task_maximum_size = 160 24
+task_padding = 4 0 4
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 210
+task_font_color = #bbbbbb 100
+task_active_font_color = #f3f3ff 100
+task_urgent_font_color = #f3f3ff 100
+task_iconified_font_color = #cccccc 100
+task_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 70
+task_iconified_icon_asb = 100 0 -40
+task_background_id = 4
+task_active_background_id = 4
+task_urgent_background_id = 5
+task_iconified_background_id = 1
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 4
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 22
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 2
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 32
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = elementary-xfce
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 0
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %a %e %b %k:%M
+time2_format =
+time1_font = Roboto Mono Regular 10
+time1_timezone =
+time2_timezone =
+time2_font =
+clock_font_color = #f3f3ff 100
+clock_padding = 2 0
+clock_background_id = 7
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 7
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = Roboto Mono Regular 10
+bat2_font = sans 0
+battery_font_color = #f3f3ff 100
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 7
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd = notify-send "AC Connected"
+ac_disconnected_cmd = notify-send "AC Disconected"
+
+#-------------------------------------
+# Separator 1
+separator = new
+separator_background_id = 0
+separator_color = #777777 83
+separator_style = empty
+separator_size = 0
+separator_padding = 4 0
+
+#-------------------------------------
+# Separator 2
+separator = new
+separator_background_id = 0
+separator_color = #777777 83
+separator_style = empty
+separator_size = 0
+separator_padding = 4 0
+
+#-------------------------------------
+# Separator 3
+separator = new
+separator_background_id = 0
+separator_color = #777777 83
+separator_style = empty
+separator_size = 0
+separator_padding = 4 0
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.8
+tooltip_hide_timeout = 0.3
+tooltip_padding = 5 4
+tooltip_background_id = 6
+tooltip_font_color = #000000 100
+tooltip_font = Ubuntu 10
+
diff --git a/lang/pl/tint2/mabox2-top.tint2rc b/lang/pl/tint2/mabox2-top.tint2rc
new file mode 100644
index 0000000..114449b
--- /dev/null
+++ b/lang/pl/tint2/mabox2-top.tint2rc
@@ -0,0 +1,279 @@
+#---- Generated by tint2conf df7b ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1:
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #222222 100
+border_color = #000000 30
+background_color_hover = #000000 60
+border_color_hover = #000000 30
+background_color_pressed = #000000 60
+border_color_pressed = #000000 30
+
+# Background 2: Domyślne zadanie, Zminimalizowane
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #777777 20
+border_color = #777777 30
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 3: Aktywne
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #777777 78
+border_color = #ffffff 40
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 4: Pilne
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #aa4400 100
+border_color = #aa7733 100
+background_color_hover = #cc7700 100
+border_color_hover = #aa7733 100
+background_color_pressed = #555555 4
+border_color_pressed = #aa7733 100
+
+# Background 5: Panel, Podpowiedzi
+rounded = 0
+border_width = 1
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #222222 66
+border_color = #444444 100
+background_color_hover = #ffffaa 100
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #000000 100
+
+#-------------------------------------
+# Panel
+panel_items = PPL:TSBCP
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 4 0 2
+panel_background_id = 5
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = bottom
+panel_monitor = primary
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.5
+autohide_hide_timeout = 0.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 20
+mouse_pressed_icon_asb = 50 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 2
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 4 2
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font_color = #cacaca 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 100000
+task_maximum_size = 130 30
+task_padding = 4 4 4
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 220
+task_font_color = #ffffff 100
+task_background_id = 2
+task_active_background_id = 3
+task_urgent_background_id = 4
+task_iconified_background_id = 2
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 0 8
+systray_background_id = 0
+systray_sort = ascending
+systray_icon_size = 20
+systray_icon_asb = 100 -100 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 4 1 4
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 28
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 1
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Cantarell Bold 12
+time1_timezone =
+time2_timezone =
+time2_font = Cantarell 0
+clock_font_color = #ffffff 100
+clock_padding = 5 0
+clock_background_id = 0
+clock_tooltip = Dzisiaj jest %A %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd =
+battery_full_cmd = notify-send battery full
+bat1_font = Monospace 9
+bat2_font = Cantarell 0
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd = notify-send ac_connected
+ac_disconnected_cmd = notify-send ac disconnected
+
+#-------------------------------------
+# Separator 1
+separator = new
+separator_background_id = 0
+separator_color = #777777 80
+separator_style = dots
+separator_size = 4
+separator_padding = 0 0
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Lewy panel - Miejsca (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.5
+tooltip_hide_timeout = 0.1
+tooltip_padding = 8 8
+tooltip_background_id = 5
+tooltip_font_color = #ffffff 100
+
diff --git a/lang/pl/tint2/mabox2001.tint2rc b/lang/pl/tint2/mabox2001.tint2rc
new file mode 100644
index 0000000..b38caef
--- /dev/null
+++ b/lang/pl/tint2/mabox2001.tint2rc
@@ -0,0 +1,304 @@
+#---- Generated by tint2conf e00b ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 0
+border_sides =
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 19
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Domyślne zadanie
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3:
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #787373 45
+border_color = #9a9a9a 100
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Aktywne
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Podpowiedzi
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #147122 100
+border_color = #fff3f3 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #787373 100
+border_color = #ffffff 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 7: Nazwa nieaktywnego pulpitu, Programy, Zasobnik systemowy, Zegar
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 50
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = PPLTSCP
+panel_size = 98% 34
+panel_margin = 4 4
+panel_padding = 1 1 4
+panel_background_id = 1
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 99 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 0 4
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 10 0
+taskbar_name_background_id = 7
+taskbar_name_active_background_id = 6
+taskbar_name_font = Noto Sans 8
+taskbar_name_font_color = #bdbdbd 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 140 24
+task_padding = 1 0 5
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 1
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 8 4 4
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 18
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 4 4
+launcher_background_id = 7
+launcher_icon_background_id = 0
+launcher_icon_size = 24
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 8 0
+clock_background_id = 7
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Lewy panel (ctrl + tab)
+button_lclick_command = mb-jgtools places ipc
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Lewy -> Menu główne, Prawy -> Menu ustawień
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/pl/tint2/micro95_bottom.tint2rc b/lang/pl/tint2/micro95_bottom.tint2rc
new file mode 100644
index 0000000..465f0ff
--- /dev/null
+++ b/lang/pl/tint2/micro95_bottom.tint2rc
@@ -0,0 +1,313 @@
+#---- Generated by tint2conf a5d7 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #d4cfc7 100
+border_color = #ffffff 100
+background_color_hover = #eeeeee 100
+border_color_hover = #464646 100
+background_color_pressed = #eeeeee 100
+border_color_pressed = #bbbbbb 100
+
+# Background 2: Domyślne zadanie, Zminimalizowane
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #d4cfc7 100
+border_color = #484848 29
+background_color_hover = #eeeeee 100
+border_color_hover = #4a4a4a 100
+background_color_pressed = #cccccc 100
+border_color_pressed = #cccccc 100
+
+# Background 3: Aktywne
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ebebeb 100
+border_color = #484848 100
+background_color_hover = #eeeeee 100
+border_color_hover = #aaaaaa 100
+background_color_pressed = #cccccc 100
+border_color_pressed = #999999 100
+
+# Background 4: Pilne
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #aa4400 100
+border_color = #aa7733 100
+background_color_hover = #aa4400 100
+border_color_hover = #aa7733 100
+background_color_pressed = #aa4400 100
+border_color_pressed = #aa7733 100
+
+# Background 5: Podpowiedzi
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffaa 100
+border_color = #999999 100
+background_color_hover = #ffffaa 100
+border_color_hover = #999999 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #999999 100
+
+# Background 6: Nazwa nieaktywnego pulpitu
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #eeeeee 100
+border_color = #cccccc 100
+background_color_hover = #eeeeee 100
+border_color_hover = #cccccc 100
+background_color_pressed = #eeeeee 100
+border_color_pressed = #cccccc 100
+
+# Background 7: Nazwa aktywnego pulpitu
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #dddddd 100
+border_color = #999999 100
+background_color_hover = #dddddd 100
+border_color_hover = #999999 100
+background_color_pressed = #dddddd 100
+border_color_pressed = #999999 100
+
+# Background 8: Zasobnik systemowy
+rounded = 3
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #dddddd 100
+border_color = #cccccc 100
+background_color_hover = #dddddd 100
+border_color_hover = #cccccc 100
+background_color_pressed = #dddddd 100
+border_color_pressed = #cccccc 100
+
+#-------------------------------------
+# Panel
+panel_items = PPLTFSCP
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 4 2 4
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = normal
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0
+autohide_hide_timeout = 0.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 2
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 1
+taskbar_name_padding = 6 3
+taskbar_name_background_id = 6
+taskbar_name_active_background_id = 7
+taskbar_name_font = sans bold 9
+taskbar_name_font_color = #222222 46
+taskbar_name_active_font_color = #222222 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 100000
+task_maximum_size = 140 35
+task_padding = 4 3 4
+task_font = sans 8
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #222222 100
+task_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 3
+task_urgent_background_id = 4
+task_iconified_background_id = 2
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = prev_task
+mouse_scroll_down = next_task
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 4 0 2
+systray_background_id = 8
+systray_sort = ascending
+systray_icon_size = 22
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 2
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 22
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Chicago95-tux
+launcher_icon_theme_override = 0
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans bold 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 7
+clock_font_color = #222222 100
+clock_padding = 1 0
+clock_background_id = 0
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #222222 100
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Lewy -> Menu główne, Prawy -> Menu ustawień
+button_lclick_command = mb-jgtools places ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.5
+tooltip_hide_timeout = 0.1
+tooltip_padding = 6 6
+tooltip_background_id = 5
+tooltip_font_color = #222222 100
+tooltip_font = sans 9
+
diff --git a/lang/pl/tint2/minimal.tint2rc b/lang/pl/tint2/minimal.tint2rc
new file mode 100644
index 0000000..328b1a7
--- /dev/null
+++ b/lang/pl/tint2/minimal.tint2rc
@@ -0,0 +1,126 @@
+#---------------------------------------------
+# TINT2 CONFIG FILE
+#---------------------------------------------
+
+#---------------------------------------------
+# BACKGROUND AND BORDER
+#---------------------------------------------
+#panel
+rounded = 1
+border_width = 0
+background_color = #000000 60
+border_color = #ffffff 18
+#taskbar
+rounded = 1
+border_width = 0
+background_color = #ffffff 10
+border_color = #ffffff 50
+#task-active
+rounded = 1
+border_width = 0
+background_color = #ffffff 40
+border_color = #ffffff 50
+#task
+rounded = 1
+border_width = 0
+background_color = #ffffff 18
+border_color = #ffffff 70
+
+#---------------------------------------------
+# PANEL
+#---------------------------------------------
+panel_monitor = 1
+panel_position = bottom center
+panel_size = 97% 20
+panel_margin = 0 0
+panel_padding = 0 0 4
+font_shadow = 0
+panel_background_id = 0
+wm_menu = 0
+panel_dock = 0
+panel_layer = top
+
+#---------------------------------------------
+# TASKBAR
+#---------------------------------------------
+taskbar_mode = multi_desktop
+#taskbar_mode = single_desktop
+taskbar_padding = 0 0 2
+taskbar_background_id = 2
+#taskbar_active_background_id = 0
+
+#---------------------------------------------
+# TASKS
+#---------------------------------------------
+task_icon = 1
+task_text = 1
+task_maximum_size = 140 35
+task_centered = 1
+task_padding = 2 1
+task_font = Terminus 6
+task_font_color = #ffffff 70
+task_background_id = 4
+task_icon_asb = 100 0 0
+# replace STATUS by 'urgent', 'active' or 'iconfied'
+#task_STATUS_background_id = 2
+#task_STATUS_font_color = #ffffff 85
+#task_STATUS_icon_asb = 100 0 0
+# example:
+task_active_background_id = 3
+task_active_font_color = #ffffff 85
+task_active_icon_asb = 100 0 0
+urgent_nb_of_blink = 8
+
+#---------------------------------------------
+# SYSTRAYBAR
+#---------------------------------------------
+systray = 0
+systray_padding = 2 1 4
+systray_background_id = 2
+systray_sort = left2right
+systray_icon_size = 0
+systray_icon_asb = 100 0 0
+
+#---------------------------------------------
+# CLOCK
+#---------------------------------------------
+time1_format = %H:%M
+time1_font = Zekton 12
+#time2_format = %I:%M %p
+#time2_font = Aller 10
+clock_font_color = #ffffff 100
+clock_padding = 6 2
+clock_background_id = 0
+#clock_lclick_command = xclock
+#clock_rclick_command = orage
+#---------------------------------------------
+# BATTERY
+#---------------------------------------------
+battery = 0
+battery_hide = 98
+battery_low_status = 10
+battery_low_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 76
+battery_padding = 1 0
+battery_background_id = 0
+
+#---------------------------------------------
+# TOOLTIP
+#---------------------------------------------
+tooltip = 1
+tooltip_padding = 2 2
+tooltip_show_timeout = 0.7
+tooltip_hide_timeout = 0.3
+tooltip_background_id = 1
+tooltip_font_color = #ffffff 80
+tooltip_font = sans 10
+
+#---------------------------------------------
+# MOUSE ACTION ON TASK
+#---------------------------------------------
+mouse_middle = none
+mouse_right = none
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
diff --git a/lang/pl/tint2/minimal_as_fsck.tint2rc b/lang/pl/tint2/minimal_as_fsck.tint2rc
new file mode 100644
index 0000000..31aa3f7
--- /dev/null
+++ b/lang/pl/tint2/minimal_as_fsck.tint2rc
@@ -0,0 +1,195 @@
+#---- Generated by tint2conf ec38 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Aktywne zadanie, Nieaktywne zadanie, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 1
+border_sides = BLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ffffff 12
+border_color = #ffffff 43
+background_color_hover = #ffffff 12
+border_color_hover = #ffffff 100
+background_color_pressed = #ffffff 12
+border_color_pressed = #ffffff 100
+
+# Background 2: Aktywne
+rounded = 0
+border_width = 1
+border_sides = LR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 11
+border_color = #ffffff 56
+background_color_hover = #000000 11
+border_color_hover = #ffffff 100
+background_color_pressed = #000000 11
+border_color_pressed = #ffffff 100
+
+# Background 3: Pilne
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #ff0000 40
+border_color = #ffffff 100
+background_color_hover = #ff0000 40
+border_color_hover = #ffffff 100
+background_color_pressed = #ff0000 40
+border_color_pressed = #ffffff 100
+
+#-------------------------------------
+# Panel
+panel_items = TSC
+panel_size = 100% 24
+panel_margin = 0 0
+panel_padding = 0 0 5
+panel_background_id = 0
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = normal
+panel_monitor = 1
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0
+autohide_hide_timeout = 0
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 0
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = single_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 0 0 0
+taskbar_background_id = 1
+taskbar_active_background_id = 1
+taskbar_name = 0
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = -1
+taskbar_name_active_background_id = -1
+taskbar_name_font_color = #000000 100
+taskbar_name_active_font_color = #000000 100
+taskbar_distribute_size = 0
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 0
+task_centered = 1
+urgent_nb_of_blink = 7
+task_maximum_size = 200 32
+task_padding = 5 1 5
+task_font = Ubuntu Light 8
+task_tooltip = 0
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #ffffff 100
+task_active_font_color = #ffffff 100
+task_urgent_font_color = #ff0000 100
+task_iconified_font_color = #ffffff 100
+task_icon_asb = 100 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 100 0 0
+task_background_id = 0
+task_active_background_id = 2
+task_urgent_background_id = 3
+task_iconified_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = none
+mouse_scroll_up = none
+mouse_scroll_down = none
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 5 2 5
+systray_background_id = 1
+systray_sort = right2left
+systray_icon_size = 0
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 0
+launcher_background_id = -1
+launcher_icon_background_id = -1
+launcher_icon_size = 0
+launcher_icon_asb = 100 0 0
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 0
+
+#-------------------------------------
+# Clock
+time1_format = %a %d %b ~ %H:%M
+time2_format =
+time1_font = Ubuntu Light 8
+time1_timezone =
+time2_timezone =
+clock_font_color = #ffffff 100
+clock_padding = 10 0
+clock_background_id = 1
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command =
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd = notify-send "battery low"
+battery_full_cmd =
+bat1_font = Sans 12
+bat2_font = Sans 12
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 0 0
+battery_background_id = 0
+battery_hide = 90
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0
+tooltip_hide_timeout = 0
+tooltip_padding = 0 0
+tooltip_background_id = 0
+tooltip_font_color = #ffffff 100
+tooltip_font = Sans 12
+
diff --git a/lang/pl/tint2/quakeworld.tint2rc b/lang/pl/tint2/quakeworld.tint2rc
new file mode 100644
index 0000000..6f8ab6a
--- /dev/null
+++ b/lang/pl/tint2/quakeworld.tint2rc
@@ -0,0 +1,299 @@
+#---- Generated by tint2conf 305a ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel
+rounded = 0
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 48
+border_color = #5e0b0b 100
+background_color_hover = #000000 70
+border_color_hover = #000000 30
+background_color_pressed = #000000 70
+border_color_pressed = #000000 30
+
+# Background 2: Domyślne zadanie, Zminimalizowane
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #000000 0
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 3: Aktywne, Nieaktywne zadanie, Programy
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #777777 20
+border_color = #ffffff 40
+background_color_hover = #aaaaaa 22
+border_color_hover = #eaeaea 44
+background_color_pressed = #555555 4
+border_color_pressed = #eaeaea 44
+
+# Background 4: Pilne
+rounded = 4
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #aa4400 100
+border_color = #aa7733 100
+background_color_hover = #cc7700 100
+border_color_hover = #aa7733 100
+background_color_pressed = #555555 4
+border_color_pressed = #aa7733 100
+
+# Background 5: Podpowiedzi, Zegar
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #5e0b0b 100
+border_color = #000000 100
+background_color_hover = #ffffaa 0
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 0
+border_color_pressed = #000000 100
+
+# Background 6:
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #5e0b0b 100
+border_color = #000000 100
+background_color_hover = #ffffaa 100
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #000000 100
+
+# Background 7: Zasobnik systemowy
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #65543f 100
+border_color = #000000 100
+background_color_hover = #ffffaa 100
+border_color_hover = #000000 100
+background_color_pressed = #ffffaa 100
+border_color_pressed = #000000 100
+
+#-------------------------------------
+# Panel
+panel_items = PPLTSBCP
+panel_size = 80% 30
+panel_margin = 0 0
+panel_padding = 2 2 0
+panel_background_id = 1
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0
+autohide_hide_timeout = 0.5
+autohide_height = 2
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 1
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 3 0 4
+taskbar_background_id = 3
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 4 2
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Noto Sans 9
+taskbar_name_font_color = #e3e3e3 100
+taskbar_name_active_font_color = #f4c00d 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 1
+urgent_nb_of_blink = 100000
+task_maximum_size = 96 30
+task_padding = 2 3 4
+task_font = Noto Sans 8
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #f6cb33 100
+task_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 3
+task_urgent_background_id = 4
+task_iconified_background_id = 2
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 4 0
+systray_background_id = 7
+systray_sort = ascending
+systray_icon_size = 24
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 2 0 2
+launcher_background_id = 3
+launcher_icon_background_id = 0
+launcher_icon_size = 24
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Numix-Square
+launcher_icon_theme_override = 1
+startup_notifications = 1
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = ubuntu 10
+time1_timezone =
+time2_timezone =
+clock_font_color = #f6cb33 100
+clock_padding = 6 0
+clock_background_id = 5
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = ubuntu 10
+bat2_font = ubuntu 8
+battery_font_color = #ffffff 100
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 101
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_icon = arrow-left
+button_text =
+button_tooltip = Lewy panel - Miejsca (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Button 2
+button = new
+button_icon = distributor-logo-mabox
+button_text =
+button_tooltip = Lewy -> Menu główne, Prawy -> Menu ustawień
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_icon = arrow-right
+button_text =
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #000000 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 16
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.5
+tooltip_hide_timeout = 0.1
+tooltip_padding = 6 10
+tooltip_background_id = 5
+tooltip_font_color = #f6cb33 100
+
diff --git a/lang/pl/tint2/tint2rc b/lang/pl/tint2/tint2rc
new file mode 100644
index 0000000..d2b8c29
--- /dev/null
+++ b/lang/pl/tint2/tint2rc
@@ -0,0 +1,240 @@
+#---- Generated by tint2conf 152e ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1:
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 39
+border_color = #000000 60
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Domyślne zadanie
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3: Panel, Zasobnik systemowy, Zegar
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 31
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Aktywne
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Podpowiedzi
+rounded = 0
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #147122 100
+border_color = #fff3f3 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #147122 100
+border_color = #0e9822 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+#-------------------------------------
+# Panel
+panel_items = LTBSC
+panel_size = 100% 34
+panel_margin = 0 0
+panel_padding = 1 1 2
+panel_background_id = 3
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 0 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 2 2
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 6 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 6
+taskbar_name_font_color = #1c9536 100
+taskbar_name_active_font_color = #18f427 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = center
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 140 30
+task_padding = 4 4 4
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 3 0 0
+systray_background_id = 3
+systray_sort = ascending
+systray_icon_size = 20
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 2 2 4
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 32
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = /usr/share/applications/manjaro_ob_menu.desktop
+launcher_item_app = /usr/share/applications/show_desktop.desktop
+launcher_item_app = /usr/share/applications/exo-file-manager.desktop
+launcher_item_app = /usr/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = /usr/share/applications/exo-web-browser.desktop
+launcher_item_app = /usr/share/applications/mcc.desktop
+launcher_item_app = /usr/share/applications/calamares.desktop
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format = %A %d %B
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 1 0
+clock_background_id = 3
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/pl/tint2/transparent.tint2rc b/lang/pl/tint2/transparent.tint2rc
new file mode 100644
index 0000000..6f9c6dd
--- /dev/null
+++ b/lang/pl/tint2/transparent.tint2rc
@@ -0,0 +1,300 @@
+#---- Generated by tint2conf 2a08 ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Panel, Zegar
+rounded = 0
+border_width = 5
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #000000 0
+border_color = #269b29 0
+background_color_hover = #000000 60
+border_color_hover = #000000 60
+background_color_pressed = #000000 60
+border_color_pressed = #000000 60
+
+# Background 2: Domyślne zadanie
+rounded = 0
+border_width = 3
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 78
+border_color = #585858 68
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 3: Programy, Zasobnik systemowy
+rounded = 1
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #787373 0
+border_color = #9a9a9a 100
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+# Background 4: Aktywne
+rounded = 1
+border_width = 2
+border_sides = B
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #4e4e4e 100
+border_color = #ece5e5 60
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 5: Podpowiedzi
+rounded = 6
+border_width = 2
+border_sides = B
+border_content_tint_weight = 2
+background_content_tint_weight = 2
+background_color = #383838 69
+border_color = #ffffff 58
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 6: Nazwa aktywnego pulpitu
+rounded = 1
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 2
+background_content_tint_weight = 0
+background_color = #787373 100
+border_color = #ffffff 100
+background_color_hover = #000000 60
+border_color_hover = #f2e4e4 60
+background_color_pressed = #000000 60
+border_color_pressed = #e9e4e4 60
+
+# Background 7: Nazwa nieaktywnego pulpitu
+rounded = 4
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #111111 50
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = PPFTFSCP
+panel_size = 100% 30
+panel_margin = 0 0
+panel_padding = 0 1 4
+panel_background_id = 1
+wm_menu = 0
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = top center horizontal
+panel_layer = top
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.3
+autohide_hide_timeout = 2
+autohide_height = 5
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 1
+mouse_hover_icon_asb = 100 0 20
+mouse_pressed_icon_asb = 100 1 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 0 4
+taskbar_background_id = 0
+taskbar_active_background_id = 0
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 1
+taskbar_name_padding = 10 0
+taskbar_name_background_id = 7
+taskbar_name_active_background_id = 6
+taskbar_name_font = Noto Sans 8
+taskbar_name_font_color = #bdbdbd 100
+taskbar_name_active_font_color = #ffffff 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = center
+
+#-------------------------------------
+# Task
+task_text = 0
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 8
+task_maximum_size = 20 20
+task_padding = 1 0 5
+task_font = Sans 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #f3f3f5 60
+task_active_font_color = #ffffff 80
+task_urgent_font_color = #ffffff 80
+task_icon_asb = 70 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_background_id = 2
+task_active_background_id = 4
+task_urgent_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = iconify
+mouse_scroll_down = toggle_iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 1 1 0
+systray_background_id = 3
+systray_sort = ascending
+systray_icon_size = 18
+systray_icon_asb = 100 0 0
+systray_monitor = primary
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 8 8 8
+launcher_background_id = 3
+launcher_icon_background_id = 0
+launcher_icon_size = 64
+launcher_icon_asb = 100 0 0
+launcher_icon_theme = Vertex-Maia
+launcher_icon_theme_override = 1
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %A %d %B %H:%M
+time2_format =
+time1_font = sans 8
+time1_timezone =
+time2_timezone =
+time2_font = sans 6
+clock_font_color = #ffffff 60
+clock_padding = 8 0
+clock_background_id = 1
+clock_tooltip = Dzisiaj jest %A, %e dzień %B
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 10
+battery_low_cmd = notify-send -i battery-caution-symbolic "niski poziom naładowania baterii"
+battery_full_cmd =
+bat1_font = sans 8
+bat2_font = sans 6
+battery_font_color = #ffffff 60
+bat1_format =
+bat2_format =
+battery_padding = 1 0
+battery_background_id = 0
+battery_hide = 98
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Button 1
+button = new
+button_text = <
+button_tooltip = Lewy panel - Miejsca (ctrl+tab)
+button_lclick_command = mb-jgtools places
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #ffffff 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 2
+button = new
+button_text = Programy
+button_lclick_command = mb-jgtools main ipc
+button_rclick_command = mb-jgtools settings ipc
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #ffffff 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Button 3
+button = new
+button_text = >
+button_tooltip = Prawy panel (super+tab)
+button_lclick_command = mb-jgtools right
+button_rclick_command =
+button_mclick_command =
+button_uwheel_command =
+button_dwheel_command =
+button_font_color = #fffdfd 100
+button_padding = 0 0
+button_background_id = 0
+button_centered = 0
+button_max_icon_size = 0
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.3
+tooltip_hide_timeout = 0.3
+tooltip_padding = 10 10
+tooltip_background_id = 5
+tooltip_font_color = #f9f9f9 100
+tooltip_font = Sans Bold 10
+
diff --git a/lang/pl/tint2/vertex.tint2rc b/lang/pl/tint2/vertex.tint2rc
new file mode 100644
index 0000000..556cca2
--- /dev/null
+++ b/lang/pl/tint2/vertex.tint2rc
@@ -0,0 +1,215 @@
+#---- Generated by tint2conf 3c6e ----
+# See https://gitlab.com/o9000/tint2/wikis/Configure for
+# full documentation of the configuration options.
+#-------------------------------------
+# Gradients
+#-------------------------------------
+# Backgrounds
+# Background 1: Domyślne zadanie
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #2b2b2c 100
+border_color = #000000 48
+background_color_hover = #ffffff 20
+border_color_hover = #cfcfcf 15
+background_color_pressed = #ffffff 20
+border_color_pressed = #cfcfcf 15
+
+# Background 2:
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #1a954e 60
+border_color = #404040 100
+background_color_hover = #0abb2f 40
+border_color_hover = #292929 100
+background_color_pressed = #8c3e00 95
+border_color_pressed = #ffffff 48
+
+# Background 3: Aktywne
+rounded = 2
+border_width = 1
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #353638 100
+border_color = #000000 59
+background_color_hover = #2f2f2f 100
+border_color_hover = #222222 68
+background_color_pressed = #f1f1f1 40
+border_color_pressed = #ffffff 68
+
+# Background 4: Aktywne zadanie, Nieaktywne zadanie, Panel, Zegar
+rounded = 0
+border_width = 0
+border_sides = TBLR
+border_content_tint_weight = 0
+background_content_tint_weight = 0
+background_color = #484a4d 100
+border_color = #232323 60
+background_color_hover = #2f2f2f 0
+border_color_hover = #222222 0
+background_color_pressed = #f1f1f1 0
+border_color_pressed = #ffffff 0
+
+#-------------------------------------
+# Panel
+panel_items = LTC
+panel_size = 100% 32
+panel_margin = 0 0
+panel_padding = 0 0 5
+panel_background_id = 4
+wm_menu = 1
+panel_dock = 0
+panel_pivot_struts = 0
+panel_position = bottom center horizontal
+panel_layer = normal
+panel_monitor = all
+panel_shrink = 0
+autohide = 0
+autohide_show_timeout = 0.2
+autohide_hide_timeout = 1
+autohide_height = 1
+strut_policy = follow_size
+panel_window_name = tint2
+disable_transparency = 0
+mouse_effects = 1
+font_shadow = 0
+mouse_hover_icon_asb = 100 0 10
+mouse_pressed_icon_asb = 100 1 0
+scale_relative_to_dpi = 0
+scale_relative_to_screen_height = 0
+
+#-------------------------------------
+# Taskbar
+taskbar_mode = multi_desktop
+taskbar_hide_if_empty = 0
+taskbar_padding = 2 2 2
+taskbar_background_id = 4
+taskbar_active_background_id = 4
+taskbar_name = 1
+taskbar_hide_inactive_tasks = 0
+taskbar_hide_different_monitor = 0
+taskbar_hide_different_desktop = 0
+taskbar_always_show_all_desktop_tasks = 0
+taskbar_name_padding = 0 0
+taskbar_name_background_id = 0
+taskbar_name_active_background_id = 0
+taskbar_name_font = Sans 9
+taskbar_name_font_color = #696969 100
+taskbar_name_active_font_color = #40e513 100
+taskbar_distribute_size = 1
+taskbar_sort_order = none
+task_align = left
+
+#-------------------------------------
+# Task
+task_text = 1
+task_icon = 1
+task_centered = 0
+urgent_nb_of_blink = 20
+task_maximum_size = 200 32
+task_padding = 2 2 2
+task_font = Droid Sans 9
+task_tooltip = 1
+task_thumbnail = 0
+task_thumbnail_size = 210
+task_font_color = #ffffff 65
+task_active_font_color = #ffffff 100
+task_urgent_font_color = #ffffff 100
+task_iconified_font_color = #ffffff 60
+task_icon_asb = 30 0 0
+task_active_icon_asb = 100 0 0
+task_urgent_icon_asb = 100 0 0
+task_iconified_icon_asb = 100 0 0
+task_background_id = 1
+task_active_background_id = 3
+task_urgent_background_id = 0
+task_iconified_background_id = 0
+mouse_left = toggle_iconify
+mouse_middle = close
+mouse_right = toggle
+mouse_scroll_up = toggle
+mouse_scroll_down = iconify
+
+#-------------------------------------
+# System tray (notification area)
+systray_padding = 0 6 10
+systray_background_id = 0
+systray_sort = left2right
+systray_icon_size = 22
+systray_icon_asb = 100 0 0
+systray_monitor = 1
+systray_name_filter =
+
+#-------------------------------------
+# Launcher
+launcher_padding = 0 0 2
+launcher_background_id = 0
+launcher_icon_background_id = 0
+launcher_icon_size = 30
+launcher_icon_asb = 100 0 0
+launcher_icon_theme_override = 0
+startup_notifications = 0
+launcher_tooltip = 1
+launcher_item_app = ~/.local/share/applications/show_desktop.desktop
+launcher_item_app = ~/.local/share/applications/exo-file-manager.desktop
+launcher_item_app = ~/.local/share/applications/exo-terminal-emulator.desktop
+launcher_item_app = ~/.local/share/applications/exo-web-browser.desktop
+launcher_item_app = ~/.local/share/applications/calamares.desktop
+launcher_apps_dir = ~/.local/share/applictations/
+
+#-------------------------------------
+# Clock
+time1_format = %H:%M
+time2_format =
+time1_font = Trebuchet MS 9
+time1_timezone =
+time2_timezone =
+clock_font_color = #ffffff 80
+clock_padding = 10 6
+clock_background_id = 4
+clock_tooltip =
+clock_tooltip_timezone =
+clock_lclick_command = gsimplecal
+clock_rclick_command = manjaro-settings-manager -m msm_timedate
+clock_mclick_command =
+clock_uwheel_command =
+clock_dwheel_command =
+
+#-------------------------------------
+# Battery
+battery_tooltip = 1
+battery_low_status = 20
+battery_low_cmd =
+battery_full_cmd =
+bat1_font = Liberation Mono 8
+bat2_font = Liberation Mono 8
+battery_font_color = #b5b5b5 100
+bat1_format =
+bat2_format =
+battery_padding = 2 0
+battery_background_id = 0
+battery_hide = 96
+battery_lclick_command =
+battery_rclick_command =
+battery_mclick_command =
+battery_uwheel_command =
+battery_dwheel_command =
+ac_connected_cmd =
+ac_disconnected_cmd =
+
+#-------------------------------------
+# Tooltip
+tooltip_show_timeout = 0.1
+tooltip_hide_timeout = 0.1
+tooltip_padding = 10 10
+tooltip_background_id = 0
+tooltip_font_color = #ffffff 100
+tooltip_font = Droid Sans 9
+