diff --git a/README.md b/README.md index 14a23b6..37a5d8b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -# mabox-i18n-files - +## Translated files for Mabox +- Conky +- Tint2 panels +- some menu parts diff --git a/common/.bashrc b/common/.bashrc new file mode 100644 index 0000000..9db2eae --- /dev/null +++ b/common/.bashrc @@ -0,0 +1,213 @@ +# +# ~/.bashrc +# + +[[ $- != *i* ]] && return + +export HISTSIZE=2000 +export HISTFILESIZE=2000 +export PATH=$HOME/bin:$PATH + +colors() { + local fgc bgc vals seq0 + + printf "Color escapes are %s\n" '\e[${value};...;${value}m' + printf "Values 30..37 are \e[33mforeground colors\e[m\n" + printf "Values 40..47 are \e[43mbackground colors\e[m\n" + printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n" + + # foreground colors + for fgc in {30..37}; do + # background colors + for bgc in {40..47}; do + fgc=${fgc#37} # white + bgc=${bgc#40} # black + + vals="${fgc:+$fgc;}${bgc}" + vals=${vals%%;} + + seq0="${vals:+\e[${vals}m}" + printf " %-9s" "${seq0:-(default)}" + printf " ${seq0}TEXT\e[m" + printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m" + done + echo; echo + done +} + +[ -r /usr/share/bash-completion/bash_completion ] && . /usr/share/bash-completion/bash_completion + +# Change the window title of X terminals +case ${TERM} in + xterm*|rxvt*|Eterm*|aterm|kterm|gnome*|interix|konsole*) + PROMPT_COMMAND='history -a;history -n;echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\007"' + ;; + screen*) + PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/#$HOME/\~}\033\\"' + ;; +esac + +use_color=true + +# Set colorful PS1 only on colorful terminals. +# dircolors --print-database uses its own built-in database +# instead of using /etc/DIR_COLORS. Try to use the external file +# first to take advantage of user additions. Use internal bash +# globbing instead of external grep binary. +safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM +match_lhs="" +[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)" +[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(/dev/null \ + && match_lhs=$(dircolors --print-database) +[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true + +if ${use_color} ; then + # Enable colors for ls, etc. Prefer ~/.dir_colors #64489 + if type -P dircolors >/dev/null ; then + if [[ -f ~/.dir_colors ]] ; then + eval $(dircolors -b ~/.dir_colors) + elif [[ -f /etc/DIR_COLORS ]] ; then + eval $(dircolors -b /etc/DIR_COLORS) + fi + fi + + if [[ ${EUID} == 0 ]] ; then + PS1='\[\033[01;31m\][\h\[\033[01;36m\] \W\[\033[01;31m\]]\$\[\033[00m\] ' + else + PS1="\[$(tput bold)\]\[\033[38;5;2m\]\u\[$(tput sgr0)\]\[\033[38;5;11m\]@\[$(tput sgr0)\]\[\033[38;5;6m\]\h\[$(tput sgr0)\] \[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;11m\]\w\[$(tput sgr0)\] \[$(tput sgr0)\]\[$(tput bold)\]\[\033[38;5;13m\]\\$\[$(tput sgr0)\] \[$(tput sgr0)\]" + fi + + alias ls='ls --color=auto' + alias grep='grep --colour=auto' + alias egrep='egrep --colour=auto' + alias fgrep='fgrep --colour=auto' +else + if [[ ${EUID} == 0 ]] ; then + # show root@ when we don't have colors + PS1='\u@\h \W \$ ' + else + PS1='\u@\h \w \$ ' + fi +fi + +unset use_color safe_term match_lhs sh + +alias cp="cp -i" # confirm before overwriting something +alias df='df -h' # human-readable sizes +alias free='free -m' # show sizes in MB +alias more=less +alias mc='. /usr/lib/mc/mc-wrapper.sh' + +xhost +local:root > /dev/null 2>&1 + +complete -cf sudo + +# Bash won't get SIGWINCH if another process is in the foreground. +# Enable checkwinsize so that bash will check the terminal size when +# it regains control. #65623 +# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11) +shopt -s checkwinsize + +shopt -s expand_aliases + +# export QT_SELECT=4 + +# Enable history appending instead of overwriting. #139609 +shopt -s histappend +shopt -s cmdhist +export HISTCONTROL=ignoreboth:erasedups + +# +# # ex - archive extractor +# # usage: ex +ex () +{ + if [ -f $1 ] ; then + case $1 in + *.tar.bz2) tar xjf $1 ;; + *.tar.gz) tar xzf $1 ;; + *.bz2) bunzip2 $1 ;; + *.rar) unrar x $1 ;; + *.gz) gunzip $1 ;; + *.tar) tar xf $1 ;; + *.tbz2) tar xjf $1 ;; + *.tgz) tar xzf $1 ;; + *.zip) unzip $1 ;; + *.Z) uncompress $1;; + *.7z) 7z x $1 ;; + *) echo "'$1' cannot be extracted via ex()" ;; + esac + else + echo "'$1' is not a valid file" + fi +} + +# Colorized man using less +man() { + LESS_TERMCAP_md=$'\e[01;31m' \ + LESS_TERMCAP_me=$'\e[0m' \ + LESS_TERMCAP_se=$'\e[0m' \ + LESS_TERMCAP_so=$'\e[01;44;33m' \ + LESS_TERMCAP_ue=$'\e[0m' \ + LESS_TERMCAP_us=$'\e[01;32m' \ + command man "$@" +} + + +# Theme.sh +export THEME_HISTFILE=~/.theme_history +[ -e "$THEME_HISTFILE" ] && theme.sh "$(theme.sh -l|tail -n1)" +alias th='theme.sh -i2' + +ROOT_TERMINAL_THEME="red-alert" +SSH_TERMINAL_THEME="mellow-purple" + +su() { + ( + INHIBIT_THEME_HIST=1 theme.sh ${ROOT_TERMINAL_THEME} + trap 'theme.sh "$(theme.sh -l|tail -n1)"' INT + env su "$@" + theme.sh "$(theme.sh -l|tail -n1)" + ) +} + +sudo() { + ( + pid=$(exec sh -c 'echo "$PPID"') + + # If the command takes less than .2s, don't change the theme. + # We could also just match on 'su' and ignore everything else, + # but this also accomodates other long running commands + # like 'sudo sleep 5s'. Modify to taste. + + ( + sleep .2s + ps -p "$pid" > /dev/null && INHIBIT_THEME_HIST=1 theme.sh ${ROOT_TERMINAL_THEME} + ) & + + trap 'theme.sh "$(theme.sh -l|tail -n1)"' INT + env sudo "$@" + theme.sh "$(theme.sh -l|tail -n1)" + ) +} + +ssh() { + ( + INHIBIT_THEME_HIST=1 theme.sh ${SSH_TERMINAL_THEME} + trap 'theme.sh "$(theme.sh -l|tail -n1)"' INT + env ssh "$@" + theme.sh "$(theme.sh -l|tail -n1)" + ) +} + +# Git prompt +if [ -f "$HOME/.bash-git-prompt/gitprompt.sh" ]; then + GIT_PROMPT_ONLY_IN_REPO=1 + source $HOME/.bash-git-prompt/gitprompt.sh +fi + +# Fuzzy Finder (fzf) +source /usr/share/fzf/completion.bash +source /usr/share/fzf/key-bindings.bash diff --git a/common/66-symbols.conf b/common/66-symbols.conf new file mode 100644 index 0000000..846a944 --- /dev/null +++ b/common/66-symbols.conf @@ -0,0 +1,113 @@ + + + + + + + monospace + + Symbols Nerd Font + FontAwesome + + + + serif + + Symbols Nerd Font + FontAwesome + + + + sans-serif + + Symbols Nerd Font + FontAwesome + + + + Noto Sans + + Symbols Nerd Font + FontAwesome + + + + JetBrains Mono + + Symbols Nerd Font + FontAwesome + + + + JetBrains Mono NL + + Symbols Nerd Font + FontAwesome + + + + Inconsolata + + Symbols Nerd Font + FontAwesome + + + + Roboto + + Symbols Nerd Font + FontAwesome + + + + Serif + + Symbols Nerd Font + FontAwesome + + + + Autour One + + Symbols Nerd Font + FontAwesome + + + + Cantarell + + Symbols Nerd Font + FontAwesome + + + + Ubuntu + + Symbols Nerd Font + FontAwesome + + + + Source Code Pro + + Symbols Nerd Font + FontAwesome + + + diff --git a/common/autostart b/common/autostart new file mode 100755 index 0000000..57ef893 --- /dev/null +++ b/common/autostart @@ -0,0 +1,49 @@ +## Mabox Autostart File +## +## +## +## Note that global autostart .desktop files will also be in +## /etc/xdg/openbox/autostart and ~/.config/autostart. +## These will include applications such as the Network Manager, Picom +## +## Turn on/off system beep. +xset b off + +## Resolution +#xrandr --output VGA-1 --primary --mode 1600x900 --pos 0x0 --rotate normal +#xrandr --output VGA-1 --primary --mode 1920x1080 --pos 0x0 --rotate normal + +## Copy Language files for Mabox - only for first run +/usr/bin/mabox-langfiles & + +## Set keyboard settings - 250 ms delay and 25 cps (characters per second) repeat rate. +## Adjust the values according to your preferances. +#xset r rate 250 25 + +## Switch keyboard layouts by Alt+Shift +## Example below: US an Greek layouts +#setxkbmap -layout "us,gr" -option "grp:alt_shift_toggle" & + +## Alias Super key to Super+Space for single-key menu. +## See 'man xcape' for other possibilities. +xcape -e 'Super_L=Super_L|space' + + +/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & + + +## Panel +(sleep 1s && mb-tint2-session) & + +## Background +(sleep 2s && nitrogen --restore) & + +## Optionally enable file manager in daemon mode for automounting +(sleep 1s && pcmanfm -d) & + +## Optionally disable touchpad +#/usr/bin/synclient TouchpadOff=1 & + + +## Mabox scripts - DO NOT DISABLE +(sleep 1s && mabox-obstart startopenbox) & diff --git a/common/mimeapps.list b/common/mimeapps.list new file mode 100644 index 0000000..dc1015b --- /dev/null +++ b/common/mimeapps.list @@ -0,0 +1,55 @@ +[Default Applications] +x-scheme-handler/http=firefox.desktop +x-scheme-handler/https=firefox.desktop +x-scheme-handler/ftp=firefox.desktop +x-scheme-handler/chrome=firefox.desktop +text/html=firefox.desktop +application/x-extension-htm=firefox.desktop +application/x-extension-html=firefox.desktop +application/x-extension-shtml=firefox.desktop +application/xhtml+xml=firefox.desktop +application/x-extension-xhtml=firefox.desktop +application/x-extension-xht=firefox.desktop +application/pdf=qpdfview.desktop +text/plain=geany.desktop +image/jpeg=viewnior.desktop +image/bmp=viewnior.desktop +image/gif=viewnior.desktop +application/x-shellscript=geany.desktop +image/svg+xml=viewnior.desktop +application/x-trash=geany.desktop +text/x-python=geany.desktop +audio/mpeg=audacious.desktop +audio/x-wav=vlc.desktop +image/png=viewnior.desktop +application/x-alpm-package=pamac-manager.desktop +application/xml=geany.desktop +video/x-ms-wmv=vlc.desktop +video/mp4=vlc.desktop +video/x-flv=vlc.desktop +video/ogg=vlc.desktop +video/x-ogm+ogg=vlc.desktop +video/x-theora+ogg=vlc.desktop +application/x-cd-image=open-fuse-iso.desktop +application/x-raw-disk-image=open-fuse-iso.desktop +text/x-matlab=geany.desktop +application/x-java=geany.desktop +text/x-csrc=geany.desktop +image/avif=viewnior.desktop + +[Added Associations] +application/pdf=qpdfview.desktop; +application/octet-stream=geany.desktop; +application/x-gettext-translation=geany.desktop; +application/x-wine-extension-ini=geany.desktop; +image/gif=viewnior.desktop;gimp.desktop; +x-scheme-handler/http=exo-web-browser.desktop +x-scheme-handler/https=exo-web-browser.desktop +inode/directory=exo-file-manager.desktop +x-scheme-handler/trash=exo-file-manager.desktop +text/x-matlab=geany.desktop; +text/plain=geany.desktop; +audio/mpeg=audacious.desktop; +application/x-java=geany.desktop; +text/x-csrc=geany.desktop; +image/webp=viewnior.desktop; diff --git a/common/pacman.conf b/common/pacman.conf new file mode 100644 index 0000000..1226dc6 --- /dev/null +++ b/common/pacman.conf @@ -0,0 +1,96 @@ +# +# /etc/pacman.conf +# +# See the pacman.conf(5) manpage for option and repository directives + +# +# GENERAL OPTIONS +# +[options] +# The following paths are commented out with their default values listed. +# If you wish to use different paths, uncomment and update the paths. +#RootDir = / +#DBPath = /var/lib/pacman/ +#CacheDir = /var/cache/pacman/pkg/ +#LogFile = /var/log/pacman.log +#GPGDir = /etc/pacman.d/gnupg/ +#HookDir = /etc/pacman.d/hooks/ +HoldPkg = pacman glibc manjaro-system +#XferCommand = /usr/bin/curl -L -C - -f -o %o %u +#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u +#CleanMethod = KeepInstalled +#UseDelta = 0.7 +Architecture = auto + +# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup +#IgnorePkg = +#IgnoreGroup = + +#NoUpgrade = +#NoExtract = + +# Misc options +#UseSyslog +Color +#NoProgressBar +# We cannot check disk space from within a chroot environment +CheckSpace +#VerbosePkgLists +ParallelDownloads = 4 +ILoveCandy + +# By default, pacman accepts packages signed by keys that its local keyring +# trusts (see pacman-key and its man page), as well as unsigned packages. +SigLevel = Required DatabaseOptional +LocalFileSigLevel = Optional +#RemoteFileSigLevel = Required + +# NOTE: You must run `pacman-key --init` before first using pacman; the local +# keyring can then be populated with the keys of all official Manjaro Linux +# packagers with `pacman-key --populate archlinux manjaro mabox`. + +# +# REPOSITORIES +# - can be defined here or included from another file +# - pacman will search repositories in the order defined here +# - local/custom mirrors can be added here or in separate files +# - repositories listed first will take precedence when packages +# have identical names, regardless of version number +# - URLs will have $repo replaced by the name of the current repo +# - URLs will have $arch replaced by the name of the architecture +# +# Repository entries are of the format: +# [repo-name] +# Server = ServerName +# Include = IncludePath +# +# The header [repo-name] is crucial - it must be present and +# uncommented to enable the repo. +# + +# The testing repositories are disabled by default. To enable, uncomment the +# repo name header and Include lines. You can add preferred servers immediately +# after the header, and they will be used before the default mirrors. +[maboxlinux] +SigLevel = PackageRequired +Server = https://repo.maboxlinux.org/stable/$arch/ + +[core] +SigLevel = PackageRequired +Include = /etc/pacman.d/mirrorlist + +[extra] +SigLevel = PackageRequired +Include = /etc/pacman.d/mirrorlist + +# If you want to run 32 bit applications on your x86_64 system, +# enable the multilib repositories as required here. +[multilib] +SigLevel = PackageRequired +Include = /etc/pacman.d/mirrorlist + +# An example of a custom package repository. See the pacman manpage for +# tips on creating your own repositories. +#[custom] +#SigLevel = Optional TrustAll +#Server = file:///home/custompkgs diff --git a/common/picom/configs/mabox-jaskier.conf b/common/picom/configs/mabox-jaskier.conf new file mode 100644 index 0000000..975b803 --- /dev/null +++ b/common/picom/configs/mabox-jaskier.conf @@ -0,0 +1,290 @@ +################################# +# Shadows # +################################# + +# Enabled client-side shadows on windows. Note desktop windows +# (windows with '_NET_WM_WINDOW_TYPE_DESKTOP') never get shadow, +# unless explicitly requested using the wintypes option. +# +# Can be set per-window using rules. +# +# Default: false +shadow = true; + +# The blur radius for shadows, in pixels. +# +# Default: 12 +shadow-radius = 8; + +# The opacity of shadows. +# +# Range: 0.0 - 1.0 +# Default: 0.75 +shadow-opacity = 1.0; + +# The left offset for shadows, in pixels. +# +# Default: -15 +shadow-offset-x = -8; + +# The top offset for shadows, in pixels. +# +# Default: -15 +shadow-offset-y = -8; + +# Hex string color value of shadow. Formatted like "#RRGGBB", e.g. "#C0FFEE". +# +# Default: #000000 +shadow-color = "#000000" + +# Crop shadow of a window fully on a particular monitor to that monitor. This is +# currently implemented using the X RandR extension. +# +# Default: false +# crop-shadow-to-monitor = false + + +################################# +# Fading # +################################# + +# Fade windows in/out when opening/closing and when opacity changes, +# unless no-fading-openclose is used. Can be set per-window using rules. +# +# Default: false +fading = true; + +# Opacity change between steps while fading in. (0.01 - 1.0, defaults to 0.028) +fade-in-step = 0.03; + +# Opacity change between steps while fading out. (0.01 - 1.0, defaults to 0.03) +fade-out-step = 0.03; + +# The time between steps in fade step, in milliseconds. (> 0, defaults to 10) +# fade-delta = 10 + +# Do not fade on window open/close. +# no-fading-openclose = false + +# Do not fade destroyed ARGB windows with WM frame. Workaround of bugs in Openbox, Fluxbox, etc. +# no-fading-destroyed-argb = false + + +################################# +# Transparency / Opacity # +################################# + +# Opacity of window titlebars and borders. +# +# Range: 0.1 - 1.0 +# Default: 1.0 (disabled) +frame-opacity = 1.0; +# Use fixed inactive dim value, instead of adjusting according to window opacity. +# +# Default: false +inactive-dim-fixed = true; + +################################# +# Corners # +################################# + +# Sets the radius of rounded window corners. When > 0, the compositor will +# round the corners of windows. Does not interact well with +# `transparent-clipping`. +# +# Default: 0 (disabled) +corner-radius = 6; + +################################# +# Blur # +################################# + +# Parameters for background blurring, see BLUR section in the man page for more information. +blur-method = "dual_kawase" +blur-size = 12; +# +# blur-deviation = false +# +blur-strength = 6; + +# Blur background of semi-transparent / ARGB windows. +# Can be set per-window using rules. +# +# Default: false +# blur-background = true + +# Blur background of windows when the window frame is not opaque. +# Implies: +# blur-background +# +# Default: false +# blur-background-frame = false + +# Use fixed blur strength rather than adjusting according to window opacity. +# +# Default: false +# blur-background-fixed = false + + +# Specify the blur convolution kernel, with the following format: +# example: +# blur-kern = "5,5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1"; +# Can also be a pre-defined kernel, see the man page. +# +# Default: "" +blur-kern = "3x3box"; + +################################# +# General Settings # +################################# + +# Enable remote control via D-Bus. See the man page for more details. +# +# Default: false +# dbus = true + +# Daemonize process. Fork to background after initialization. Causes issues with certain (badly-written) drivers. +# daemon = false + +# Specify the backend to use: `xrender`, `glx`, or `egl`. +# +# Default: "xrender" +backend = "glx" + +# Use higher precision during rendering, and apply dither when presenting the +# rendered screen. Reduces banding artifacts, but may cause performance +# degradation. Only works with OpenGL. +dithered-present = false; + +# Enable/disable VSync. +# +# Default: false +vsync = true; + +# Try to detect windows with rounded corners and don't consider them +# shaped windows. The accuracy is not very high, unfortunately. +# +# Has nothing to do with `corner-radius`. +# +# Default: false +detect-rounded-corners = true; + +# Detect '_NET_WM_WINDOW_OPACITY' on client windows, useful for window managers +# not passing '_NET_WM_WINDOW_OPACITY' of client windows to frame windows. +# +# Default: false +detect-client-opacity = true; + +# Use EWMH '_NET_ACTIVE_WINDOW' to determine currently focused window, +# rather than listening to 'FocusIn'/'FocusOut' event. May be more accurate, +# provided that the WM supports it. +# +# Default: false +# use-ewmh-active-win = false + +# Unredirect all windows if a full-screen opaque window is detected, +# to maximize performance for full-screen windows. Known to cause flickering +# when redirecting/unredirecting windows. +# +# Default: false +unredir-if-possible = true; + +# Delay before unredirecting the window, in milliseconds. +# +# Default: 0. +# unredir-if-possible-delay = 0 + +# Use 'WM_TRANSIENT_FOR' to group windows, and consider windows +# in the same group focused at the same time. +# +# Default: false +detect-transient = true; + +# Use 'WM_CLIENT_LEADER' to group windows, and consider windows in the same +# group focused at the same time. This usually means windows from the same application +# will be considered focused or unfocused at the same time. +# 'WM_TRANSIENT_FOR' has higher priority if detect-transient is enabled, too. +# +# Default: false +# detect-client-leader = false + +# Use of damage information for rendering. This cause the only the part of the +# screen that has actually changed to be redrawn, instead of the whole screen +# every time. Should improve performance. +# +# Default: false +use-damage = true; + +# Use X Sync fence to wait for the completion of rendering of other windows, +# before using their content to render the current screen. +# +# Required for explicit sync drivers, such as nvidia. +# +# Default: false +# xrender-sync-fence = false + +# GLX backend: Use specified GLSL fragment shader for rendering window +# contents. Read the man page for a detailed explanation of the interface. +# +# Can be set per-window using rules. +# +# window-shader-fg = "default" + +# Force all windows to be painted with blending. Useful if you +# have a `window-shader-fg` that could turn opaque pixels transparent. +# +# Default: false +# force-win-blend = false + +# Do not use EWMH to detect fullscreen windows. +# Reverts to checking if a window is fullscreen based only on its size and coordinates. +# +# Default: false +# no-ewmh-fullscreen = false + +# Dimming bright windows so their brightness doesn't exceed this set value. +# Brightness of a window is estimated by averaging all pixels in the window, +# so this could comes with a performance hit. +# Setting this to 1.0 disables this behaviour. Requires --use-damage to be disabled. +# +# Default: 1.0 (disabled) +# max-brightness = 1.0 + +# Make transparent windows clip other windows like non-transparent windows do, +# instead of blending on top of them. e.g. placing a transparent window on top +# of another window will cut a "hole" in that window, and show the desktop background +# underneath. +# +# Default: false +# transparent-clipping = false + +# Set the log level. Possible values are: +# "trace", "debug", "info", "warn", "error" +# in increasing level of importance. Case insensitive. +# If using the "TRACE" log level, it's better to log into a file +# using *--log-file*, since it can generate a huge stream of logs. +# +# Default: "warn" +# log-level = "warn"; + +# Set the log file. +# If *--log-file* is never specified, logs will be written to stderr. +# Otherwise, logs will to written to the given file, though some of the early +# logs might still be written to the stderr. +# When setting this option from the config file, it is recommended to use an absolute path. +# +# log-file = "/path/to/your/log/file" + +# Write process ID to a file. +# write-pid-path = "/path/to/your/log/file" + +# Rule-based per-window options. +# +# See WINDOW RULES section in the man page for how these work. +@include "mabox-rules.conf"; +# `@include` directive can be used to include additional configuration files. +# Relative paths are search either in the parent of this configuration file +# (when the configuration is loaded through a symlink, the symlink will be +# resolved first). Or in `$XDG_CONFIG_HOME/picom/include`. +# +# @include "extra.conf" diff --git a/common/picom/include/conky-nobg.conf b/common/picom/include/conky-nobg.conf new file mode 100644 index 0000000..6276521 --- /dev/null +++ b/common/picom/include/conky-nobg.conf @@ -0,0 +1,22 @@ +# CONKY with transparent background (no background) like: logo, polaroid conky +# they need 'own_window_class' +# opacity like 0.2 - 0.3 might create interesting effect :) +match = "class_g = 'Conky-nobg'"; +blur-background = false; +corner-radius = 0; +opacity = 1.0; +dim = 0.0; +shadow = false; +animations = ( + { + triggers = ["close", "hide"]; + preset = "disappear"; + duration = 1.0; + }, +{ + triggers = ["open", "show"]; + preset = "appear"; + duration = 1.0; + }, +) + diff --git a/common/picom/include/conky.conf b/common/picom/include/conky.conf new file mode 100644 index 0000000..74f4962 --- /dev/null +++ b/common/picom/include/conky.conf @@ -0,0 +1,22 @@ +# Conky (normal conkies - not always transparent) +match = "class_g = 'Conky'"; +blur-background = true; +corner-radius = 6; +opacity = 0.75; +dim = 0.0; +shadow = true; +animations = ( +{ + triggers = ["close", "hide"]; + preset = "fly-out"; + direction = "up"; + duration = 1.0; + }, +{ + triggers = ["open", "show"]; + preset = "fly-in"; + delay = 3; + direction = "up"; + duration = 1.0; + }, +) diff --git a/common/picom/include/jgmenu.conf b/common/picom/include/jgmenu.conf new file mode 100644 index 0000000..87cc179 --- /dev/null +++ b/common/picom/include/jgmenu.conf @@ -0,0 +1,25 @@ +# JGMENU opacity and corner radius is controlled by jgmenu itself +# Maybe split animations to separate files? +match = "name = 'jgmenu'"; +blur-background = true; +opacity = 1.0; +corner-radius = 2; +dim = 0.0; +shadow = true; +animations = ( + { + triggers = ["close", "hide"]; + preset = "fly-out"; + direction = "up"; + duration = 0.6; + scale = 0.8; + + }, + { + triggers = ["open", "show"]; + preset = "appear"; + duration = 0.2; + scale = 0.6; + } + ) + diff --git a/common/picom/include/mabox-animations.conf b/common/picom/include/mabox-animations.conf new file mode 100644 index 0000000..0994664 --- /dev/null +++ b/common/picom/include/mabox-animations.conf @@ -0,0 +1,133 @@ +# ███╗ ███╗ █████╗ ██████╗ ██████╗ ██╗ ██╗ ██████╗ ██╗ ██████╗ ██████╗ ███╗ ███╗ +# ████╗ ████║██╔══██╗██╔══██╗██╔═══██╗╚██╗██╔╝ ██╔══██╗██║██╔════╝██╔═══██╗████╗ ████║ +# ██╔████╔██║███████║██████╔╝██║ ██║ ╚███╔╝ ██████╔╝██║██║ ██║ ██║██╔████╔██║ +# ██║╚██╔╝██║██╔══██║██╔══██╗██║ ██║ ██╔██╗ ██╔═══╝ ██║██║ ██║ ██║██║╚██╔╝██║ +# ██║ ╚═╝ ██║██║ ██║██████╔╝╚██████╔╝██╔╝ ██╗ ██║ ██║╚██████╗╚██████╔╝██║ ╚═╝ ██║ +# ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ + +# █████╗ ███╗ ██╗██╗███╗ ███╗ █████╗ ████████╗██╗ ██████╗ ███╗ ██╗ +# ██╔══██╗████╗ ██║██║████╗ ████║██╔══██╗╚══██╔══╝██║██╔═══██╗████╗ ██║ +# ███████║██╔██╗ ██║██║██╔████╔██║███████║ ██║ ██║██║ ██║██╔██╗ ██║ +# ██╔══██║██║╚██╗██║██║██║╚██╔╝██║██╔══██║ ██║ ██║██║ ██║██║╚██╗██║ +# ██║ ██║██║ ╚████║██║██║ ╚═╝ ██║██║ ██║ ██║ ██║╚██████╔╝██║ ╚████║ +# ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ + +# Animations for NORMAL windows. +{ + match = "window_type = 'normal'"; + animations = ( + { + triggers = ["close"]; + #preset = "slide-out"; + #direction = "up"; + opacity = { + curve = "linear"; + duration = 0.6; + start = "window-raw-opacity-before"; + end = 0; + }; + blur-opacity = "opacity"; + shadow-opacity = "opacity"; + }, + { + triggers = ["hide"]; + preset = "disappear"; + direction = "up"; + duration = 0.4; + }, + { + triggers = ["open", "show"]; + opacity = { + curve = "cubic-bezier(0,1,1,1)"; + duration = 0.6; + start = 0; + end = "window-raw-opacity"; + }; + blur-opacity = "opacity"; + shadow-opacity = "opacity"; + offset-x = "(1 - scale-x) / 2 * window-width"; + offset-y = "(1 - scale-y) / 2 * window-height"; + scale-x = { + curve = "cubic-bezier(0,1.3,1,1)"; + duration = 0.5; + start = 0.6; + end = 1; + }; + scale-y = "scale-x"; + shadow-scale-x = "scale-x"; + shadow-scale-y = "scale-y"; + shadow-offset-x = "offset-x"; + shadow-offset-y = "offset-y"; + }, + { + triggers = ["geometry"] + scale-x = { + curve = "cubic-bezier(0,0,0,1.28)"; + duration = 0.3; + start = "window-width-before / window-width"; + end = 1; + } + scale-y = { + curve = "cubic-bezier(0,0,0,1.28)"; + duration = 0.3; + start = "window-height-before / window-height"; + end = 1; + } + offset-x = { + curve = "cubic-bezier(0,0,0,1.28)"; + duration = 0.3; + start = "window-x-before - window-x"; + end = 0; + } + offset-y = { + curve = "cubic-bezier(0,0,0,1.28)"; + duration = 0.3; + start = "window-y-before - window-y"; + end = 0; + } + + shadow-scale-x = "scale-x"; + shadow-scale-y = "scale-y"; + shadow-offset-x = "offset-x"; + shadow-offset-y = "offset-y"; + } +) +}, +{ + match = "name = 'Quake Term'"; + corner-radius = 0; + opacity = 1.0; + animations = ( + { + triggers = ["close", "hide"]; + preset = "fly-out"; + direction = "up"; + duration = 0.2; + }, + { + triggers = ["open", "show"]; + preset = "fly-in"; + direction = "up"; + duration = 0.2; + } + ) +}, +{ + match = "name = 'Quake Radio'"; + opacity = 1.0; + animations = ( + { + triggers = ["close", "hide"]; + preset = "fly-out"; + direction = "right"; + duration = 0.2; + }, + { + triggers = ["open", "show"]; + preset = "fly-in"; + direction = "right"; + duration = 0.2; + } + ) +}, + diff --git a/common/picom/include/mabox-rules.conf b/common/picom/include/mabox-rules.conf new file mode 100644 index 0000000..b0569eb --- /dev/null +++ b/common/picom/include/mabox-rules.conf @@ -0,0 +1,100 @@ +rules: ( +{ match = "fullscreen"; corner-radius = 0; dim = 0.0; shadow = false;}, +{ +@include "win-inactive.conf" +}, +{ + match = "window_type = 'dropdown_menu'"; + blur-background = false; + shadow = false; + corner-radius = 0; + opacity = 1.0; +}, + +{ + match = "window_type = 'popup_menu'"; + blur-background = false; + shadow = false; + corner-radius = 0; + opacity = 1.0; +}, + +{ + match = "window_type = 'popup'"; + blur-background = false; + shadow = false; + corner-radius = 0; + opacity = 1.0; +}, + +{ + match = "window_type = 'dock'"; + shadow = false; + corner-radius = 5; + fade = true; +}, + +{ + match = "window_type = 'tooltip'"; + shadow = false; + corner-radius = 2; + fade = false; + opacity = 0.90; + full-shadow = false; +}, + +{ + match = "window_type = 'splash'"; + shadow = false; +}, + +{ + match = "window_type = 'dialog'"; + shadow = false; +}, + +{ + match = "window_type = 'menu'"; + blur-background = false; + shadow = false; + corner-radius = 0; + opacity = 1.0; +}, + +{ + # Mabox screenshot tool + match = "class_g = 'slop'"; + opacity = 1; + shadow = false; + blur-background = false; + corner-radius = 0; +}, +{ +match = "name = 'cavatransparent' || name = 'vistransparent'"; +blur-background = false; +shadow = false; +}, +{ +match = "class_g = 'skippy-xd-fix'"; +blur-background = false; +opacity = 1.0; +shadow = false; +corner-radius = 0; +}, +@include "mabox-animations.conf" +{ +@include "jgmenu.conf" +}, +{ +@include "tint2.conf" +}, +{ +@include "conky.conf" +}, +{ +@include "conky-nobg.conf" +}, +{ +@include "notifications.conf" +}, +) diff --git a/common/picom/include/notifications.conf b/common/picom/include/notifications.conf new file mode 100644 index 0000000..015aceb --- /dev/null +++ b/common/picom/include/notifications.conf @@ -0,0 +1,19 @@ +# NOTIFICATIONS + match = "name = 'xfce4-notifyd'" + shadow = true; + dim = 0.0; + corner-radius = 2; + animations = ( + { + triggers = ["close", "hide"]; + preset = "fly-out"; + direction = "up"; + duration = 0.2; + }, + { + triggers = ["open", "show"]; + preset = "fly-in"; + direction = "right"; + duration = 0.2; + } + ) diff --git a/common/picom/include/tint2.conf b/common/picom/include/tint2.conf new file mode 100644 index 0000000..5bde478 --- /dev/null +++ b/common/picom/include/tint2.conf @@ -0,0 +1,9 @@ +# TINT2 opacity, corner-radius is controlled by tint2 itself +# but corner-radius might be handy here +match = "name = 'tint2'"; +blur-background = true; +corner-radius = 4; +opacity = 0.8; +dim = 0.0; +shadow = false; + diff --git a/common/picom/include/win-active.conf b/common/picom/include/win-active.conf new file mode 100644 index 0000000..9ab48a9 --- /dev/null +++ b/common/picom/include/win-active.conf @@ -0,0 +1,6 @@ +# NORMAL focused (active) windows +match = "focused && window_type = 'normal'"; +blur-background = false; +shadow = true; +opacity = 1.0; +dim = 0; diff --git a/common/picom/include/win-inactive.conf b/common/picom/include/win-inactive.conf new file mode 100644 index 0000000..508899c --- /dev/null +++ b/common/picom/include/win-inactive.conf @@ -0,0 +1,7 @@ +# NORMAL unfocused (inactive) windows +match = "!focused && window_type = 'normal'"; +blur-background = true; +shadow = true; +opacity = 0.75; +dim = 0.1; + diff --git a/common/rc.xml b/common/rc.xml new file mode 100644 index 0000000..56db11b --- /dev/null +++ b/common/rc.xml @@ -0,0 +1,1530 @@ + + + + 10 + 20 + + + yes + + no + + yes + + no + + 500 + + no + + + + Smart + +
yes
+ + Primary + + 1 + +
+ + MBcolors + NDSLIMC + + yes + yes + + Ubuntu + 9 + + Bold + + Normal + + + + Ubuntu + 9 + + Normal + + Normal + + + + Ubuntu + 11 + + Normal + + Normal + + + + Ubuntu + 10 + + Normal + + Normal + + + + Ubuntu + 9 + + bold + + normal + + + + Ubuntu + 9 + + bold + + normal + + + + + + 2 + 1 + + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + + 875 + + + + yes + Always + + Center + + + + 10 + + 10 + + + + + + 2 + 2 + 2 + 2 + + + Right + + 0 + 0 + yes + Above + + Vertical + + yes + 1000 + + 300 + + Middle + + + + C-g + + + + + + + left + yes + + + + + right + yes + + + + + + + + + + + + + + + + + + + lookat 1 + lookat 2 + lookat 3 + lookat 4 + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + + + + + + + + + + + + + + + + + client-menu + + + + + icons + no + no + + + + + + + + yes + yes + + + + + right + + + + + left + + + + + up + + + + + down + + + + + jumpapp firefox + + + + + jumpapp -t doublecmd doublecmd + + + + + jumpapp geany + + + + + geany + + + + + mb-jgtools settings + + + + + fsearch + + + + + xkill + + + + + colormenu + + + + + mb-music -s + + + + + colorizer -s + + + + + compton_toggle + + + + + conky_toggle + + + + + noblank + + + + + galculator + + + + + exo-open --launch TerminalEmulator + + + + + exo-open --launch TerminalEmulator + + + + + + + + quake-term + + + + + skippy-xd --paging --pivot Super_L --next + + + + + skippy-xd --expose --pivot Super_L --next + + + + + exo-open --launch WebBrowser + + + + + exo-open --launch FileManager + + + + + quake-radio + + + + + pavucontrol + + + + + mb-jgtools right + + + + + mbscreenlocker + + + + + jglockscreen -s + + + + + flameshot gui + + + + + flameshot launcher + + + + + mb-jgtools screenshot + + + + + mb-jgtools main ipc + + + + + gmrun + + + + + mb-jgtools main top + + + + + + exo-open --launch TerminalEmulator btop + + + + + mb-jgtools mblogout + + + + + mb-places -s + + + + + mb-jgtools places + + + + + jgconky-pipe -s + + + + + jgtint2-pipe -s + + + + + jgdesktops -s + + + + + jgespanso-pipe -s + + + + + jghistory-pipe -s + + + + + jgwallpaperchanger -s + + + + + jgmenusettings-pipe -s + + + + + mb-status menu + + + + + jgtile + + + areaclick topleft + areaclick top + areaclick topright + areaclick left + areaclick center + areaclick right + areaclick bottomleft + areaclick bottom + areaclick bottomright + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + no + no + + + + + no + no + + + + + no + yes + + + + + no + yes + + + + + + + + mb-jgtools mblogout + + + + + openbox --reconfigure;notify-send -i info "Openbox" "Openbox reconfigured" + + + + + + xdg-open ~/.config/openbox/rc.xml + + + + + xdg-open ~/.config/openbox/menu.xml + + + + + betterlockscreen -l dim + + + + + + mb-brightness inc + + + + + mb-brightness dec + + + + + pamixer -i 2 + + + + + pamixer -d 2 + + + + + pamixer -t + + + + + playerctl stop + + + + + playerctl play-pause + + + + + playerctl previous + + + + + playerctl next + + + + + + + + superclick topleft + + + + + + superclick top + + + + + + superclick topright + + + + + + superclick left + + + + + + superclick center + + + + + + superclick right + + + + + + superclick bottomleft + + + + + + superclick bottom + + + + + + superclick bottomright + + + + + client-menu + + + + + + + + + + + + 0 + 0 + 50% + 100% + + + + + + 50% + 100% + 50% + 0% + + + + + + 100% + 50% + 0% + 50% + + + + + + 100% + 50% + 0% + 0% + + + + + + 50% + 50% + 0% + 0% + + + + + + 25% + 50% + 0% + 0% + + + + + + 50% + 50% + 0% + 50% + + + + + + 25% + 50% + 0% + 50% + + + + + + 50% + 50% + 50% + 0% + + + + + + 25% + 50% + 75% + 0% + + + + + + 50% + 50% + 50% + 50% + + + + + + 25% + 50% + 75% + 50% + + + + + -20 + + + + + 20 + + + + + -20 + + + + + 20 + + + + + + + + + + + + + + + + + + + + + + + 5 + + 500 + + 400 + + false + + + + + + + + + + + + yes + + + + center + current + + + + + + + + + + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + yes + + + + center + current + + + + + + + + + + + + + + no + + + + + + + + yes + + + + + + + + + obtctl fontsize increase + + + + + obtctl fontsize decrease + + + + + colorizer-ob -s + + + + + + + + + + + + + + + + + + + client-menu + + + + + + + top + + + + + + + left + + + + + + + right + + + + + + + bottom + + + + + + + client-menu + + + + + + + + + + + + + + + + + superclick + + + + + + + + + + + + + + + + + + + + -10 + -10 + + + + + + 10 + 10 + + + + + + + + client-menu + + + + + + + client-menu + + + + + + + + -10 + + + + + + 10 + + + + + + + + + + + + + + + + -10 + + + + + + 10 + + + + + + + + + + + + + + + -10 + + + + + + 10 + + + + + + + + + + + + + + + -10 + + + + + + 10 + + + + + + + + + + + + + + + + + + + + + + + vertical + + + + + horizontal + + + + + + + + -10 + -10 + + + + + + 10 + 10 + + + + + + + + + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + conkyctl cmdmenu left + + + + + + + + conkyctl contextmenu + + + + + + conkyctl cmdmenu down + + + + + conkyctl cmdmenu up + + + + + colorizer-conky -s + + + + + conkyctl makemoveableall + + + + + + + superclick-desktop + + + + + jgwallpaperchanger -d + + + + + + none + + + + + none + + + + + + areaclick + + + + + skippy-xd + + + + + skippy-xd --paging + + + + + jgdesktops -s + + + + + mb-jgtools main + + + + + + root-menu + + + + + + + previous + + + + + next + + + + + previous + + + + + next + + + + + + + + menu.xml + 200 + + no + + 100 + + 400 + + yes + + yes + + + + + yes + + + all + yes + yes + + + +
diff --git a/common/skippy-xd.rc b/common/skippy-xd.rc new file mode 100644 index 0000000..2077e26 --- /dev/null +++ b/common/skippy-xd.rc @@ -0,0 +1,210 @@ +# Copy this to ~/.config/skippy-xd/skippy-xd.rc and edit it to your liking +# +# File Syntax: +# Comments must be on their own seperate lines that start with a # +# +# Colors can be anything XAllocNamedColor can handle +# (Like "black" or "#000000") +# +# Fonts are Xft font descriptions +# +# Booleans are "true" or anything but "true" (-> false) +# +# Opacity is an integer in the range of 0-255 +# + +# To reload system config options, stop and then start new skippy daemon +# All other config options can be reloaded on the fly +# With skippy-xd --config or skippy-xd --config-reload + +[system] + +# File path for client-to-daemon communication +daemonPath = /tmp/skippy-xd-fifo + +# File path for daemon-to-client communication +clientPath = /tmp/skippy-xd-fofi + +# This queries the list of windows +# Depending on your window manager, you may want to choose between +# XQueryTree, _NET_CLIENT_LIST, _WIN_CLIENT_LIST +# If you see missing windows, extra windows, or even crashes, +# Try a different option +clientList = _NET_CLIENT_LIST + +# When compositors such as picom are not used +# Turn on pseudo-transparency +pseudoTrans = true + +[multimonitor] + +# Filter windows by Xinerama monitor +showOnlyCurrentMonitor = false + +# Display only windows on the current XScreen +showOnlyCurrentScreen = true + +[layout] + +# xd: row-to-row layout +# cosmos: position preserving layout +switchLayout = xd +exposeLayout = cosmos + +# Wait time in ms before displaying switch previews +# Set = 0 to veto live previews completely +switchWaitDuration = 100 + +# During switchWaitDuration and animation, +# Whether switch can cycle through windows +switchCycleDuringWait = false + +# Enable to cycle through all virtual desktops +switchCycleDesktops = false +exposeCycleDesktops = false + +# Relative minimal pixel distance between windows +distance = 50 + +# Whether to show the window bigger than its original size +allowUpscale = false + +[display] + +# Animation duration in ms +# Set = 0 to switch off animations +animationDuration = 200 + +# Animation refresh rate in fps +animationRefresh = 60 + +# Background when skippy-xd is activated +# To display background wallpaper: +# background = /home/richard/screenshots/256.png +# For tinted background: +# background = #00000055 +# For transparent background: +# background = None +background = #00000055 + +# During paging, do not apply background to individual desktops +preservePages = true + +# Whether to display window frames +includeFrame = true + +# Show window previews with rounded corners +cornerRadius = 0 + +# Icons on live previews +icon = true +iconPlace = left left +iconSize = 48 + +# Windows that were never shown before +[filler] +tint = #333333 +iconPlace = mid mid +iconSize = 48 + +# Windows that are not filler, highlight, shadow, multiselect +[normal] +tint = black +tintOpacity = 0 +opacity = 255 + +# Currently highlighted window +[highlight] +tint = #444444 +tintOpacity = 50 +opacity = 255 + +# Unmapped windows: minimized, shaded, not in current virtual desktop +[shadow] +tint = #040404 +tintOpacity = 0 +opacity = 160 + +# Highlighted in multi-select mode +[multiselect] +tint = #3376BB +tintOpacity = 50 +opacity = 255 + +# Windows of type _NET_WM_WINDOW_TYPE_DOCK +[panel] +show = true +backgroundTinting = true +reserveSpace = true + +# Windows of type _NET_WM_WINDOW_TYPE_DESKTOP +[desktop] +show = false +backgroundTinting = true + +# Label per display window +# option = windowClass to display window class +# option = windowTitle to display window title +[label] +show = true +option = windowClass +offsetX = 0 +offsetY = -40 +width = 0.8 +border = #e5e5e5 +background = #202020 +backgroundHighlight = #32B557 +opacity = 128 +text = white +textOutline = #0e0e0e +font = fixed-11:weight=bold + +[bindings] + +# When focus is stolen off skippy-xd +# E.g. a window is newly created during skippy-xd activation +# Focus back on skippy-xd +enforceFocus = true + +# After this time in ms, pivot "locks" into toggle mode +# And the pivot key no longer needs to be held +# Set to 0 to disable pivot locking +pivotLockingTime = 0 + +# Reposition the mouse to the centre of the window +moveMouse = false + +# key* = is a list of valid XWindows KeySym identifiers, +# Case sensitive and seperated list. +# Run the program 'xev' to find them. + +keysUp = Up +keysDown = Down +keysLeft = Left +keysRight = Right + +keysSelect = Return space +keysCancel = Escape +keysNext = n +keysPrev = p + +keysIconify = 1 +keysShade = 2 +keysClose = 3 + +# Mouse button bindings, options include +# "no": do nothing +# "focus": select window +# "iconify": minimize window +# "shade-ewmh": toggle window shade +# "close-icccm": close window with ICCCM method +# "close-ewmh": lcose window with EWMH method +# "destroy": forcefully destroy window +# "keysPrev": focus on previous window +# "keysNext": focus on next window + +miwMouse1 = focus +miwMouse2 = close-ewmh +miwMouse3 = iconify +miwMouse4 = keysNext +miwMouse5 = keysPrev diff --git a/common/terminator/2-3-grid.json b/common/terminator/2-3-grid.json new file mode 100644 index 0000000..8ca2efc --- /dev/null +++ b/common/terminator/2-3-grid.json @@ -0,0 +1,36 @@ +{ + "layout": { + "vertical": false, + "tab1": [ + { + "ratio": 0.7, + "children": [ + { + "command": "btop;neofetch;bash" + }, + { + "command": "neofetch;sleep 6;man terminator;bash" + } + ] + }, + { + "children": [ + { + "command": "pyradio -p 16;bash", + "ratio": 0.6 + }, + { + "command": "cava;bash", + "ratio": 0.4 + }, + { + "command": "theme.sh -i2;bash" + } + ] + } + ] + }, + "profile": { + "font": "JetBrains Mono NL Regular 9" + } +} diff --git a/common/terminator/config b/common/terminator/config new file mode 100644 index 0000000..82e5bdf --- /dev/null +++ b/common/terminator/config @@ -0,0 +1,24 @@ +[global_config] + dbus = False + inactive_color_offset = 0.5064102564102564 + enabled_plugins = , + title_font = JetBrains Mono NL 9 +[keybindings] +[profiles] + [[default]] + background_darkness = 0.9 + background_type = transparent + cursor_color = "#aaaaaa" + font = JetBrains Mono NL 9 + show_titlebar = False + scrollbar_position = hidden + use_system_font = False +[layouts] + [[default]] + [[[window0]]] + type = Window + parent = "" + [[[child1]]] + type = Terminal + parent = window0 +[plugins] diff --git a/common/volumettf b/common/volumettf new file mode 100755 index 0000000..5d294ca --- /dev/null +++ b/common/volumettf @@ -0,0 +1,26 @@ +#!/bin/bash +# Tint2 volume executor with ttf icons + +active_sink=$(LANG=C pactl get-default-sink) +muted=$(LANG=C pactl list sinks | grep -A14 -P "$active_sink" | awk '/Mute:/{print $2}') +vol=$(LANG=C pactl list sinks | grep -A14 -P "$active_sink" | awk '/Volume: front-left:/{print $5}' | cut -f1 -d'%') + +if [[ $muted = "no" ]]; then + if [[ $vol -ge 80 ]]; then + echo "墳 $vol%" + elif [[ $vol -ge 70 ]]; then + echo "墳 $vol%" + elif [[ $vol -ge 60 ]]; then + echo "奔 $vol%" + elif [[ $vol -ge 50 ]]; then + echo "奔 $vol%" + elif [[ $vol -ge 30 ]]; then + echo "奔 $vol%" + elif [[ $vol -ge 10 ]]; then + echo "奄 $vol%" + elif [[ $vol -ge 0 ]]; then + echo "奄 $vol%" + fi +else + echo "婢 $vol%" +fi diff --git a/lang/en/.config/blob/ArcDark/MBcolors.colorrc b/lang/en/.config/blob/ArcDark/MBcolors.colorrc new file mode 100644 index 0000000..c8e7eee --- /dev/null +++ b/lang/en/.config/blob/ArcDark/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 0 +sep_height = 5 +sep_halign = center +menu_gradient_pos=none +color_menu_bg = #14161B 80 +color_menu_bg_to = #000000 90 +color_menu_border = #2d3036 100 +color_norm_bg = #2b303b 0 +color_norm_fg = #D3DAE3 100 +color_sel_bg = #3498db 100 +color_sel_fg = #ffffff 100 +color_sel_border = #3498db 100 +color_sep_fg = #2d3036 100 +color_title_bg = #2d3036 100 +color_title_fg = #D3DAE3 100 +color_title_border = #eff0f1 10 diff --git a/lang/en/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..3918528 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#1f1f1f', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#e95620', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..256b6cf --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..d982718 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 128, + minimum_width = 128, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[128x128]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..fe06dba --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#e95620', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..006664b --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..bb52c57 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#1f1f1f', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..b919078 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#e95620', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..cb9c65b --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + cpu_avg_samples = 2, + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..09b2969 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..d5850e3 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#e95620', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..135f5c8 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 140, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..ff1e7e1 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..15cb629 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#e95620', + color3 = '#2bb0a5', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..671de31 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#e95620', + color3 = '#2bb0a5', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..a72c17f --- /dev/null +++ b/lang/en/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/ArcDark/mvars.txt b/lang/en/.config/blob/ArcDark/mvars.txt new file mode 100644 index 0000000..89eb7c4 --- /dev/null +++ b/lang/en/.config/blob/ArcDark/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=false +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/ArcDark/wpicon.png b/lang/en/.config/blob/ArcDark/wpicon.png new file mode 100644 index 0000000..4994c02 Binary files /dev/null and b/lang/en/.config/blob/ArcDark/wpicon.png differ diff --git a/lang/en/.config/blob/ArcDark/wpicon_wide.png b/lang/en/.config/blob/ArcDark/wpicon_wide.png new file mode 100644 index 0000000..6e932ad Binary files /dev/null and b/lang/en/.config/blob/ArcDark/wpicon_wide.png differ diff --git a/lang/en/.config/blob/CyberPunk_Neon/MBcolors.colorrc b/lang/en/.config/blob/CyberPunk_Neon/MBcolors.colorrc new file mode 100644 index 0000000..30bff5c --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 0 +item_border = 0 +menu_gradient_pos=top +color_menu_bg = #091833 90 +color_menu_bg_to = #091833 95 +color_menu_border = #023748 100 +color_norm_bg = #2b303b 0 +color_norm_fg = #0ABDC6 100 +color_sel_bg = #711c91 100 +color_sel_fg = #091833 100 +color_sel_fg = #eeeeee 100 +color_sel_border = #711c91 100 +color_sep_fg = #0ABDC6 20 +color_title_bg = #000B1E 100 +color_title_fg = #0ABDC6 100 +color_title_border = #023748 60 + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..5c47a52 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..30a5242 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..5181fec --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..22670bb --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..0402c6c --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..3f2fc41 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#0d081b', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..db962c5 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..adb8d19 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..414905d --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..aed32b9 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..ffe8a76 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..c838392 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..7f228ab --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + color3 = '#6c98c8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..ead6dcf --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + color3 = '#6c98c8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..84f53a9 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#562d66', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/CyberPunk_Neon/mvars.txt b/lang/en/.config/blob/CyberPunk_Neon/mvars.txt new file mode 100644 index 0000000..8128ba4 --- /dev/null +++ b/lang/en/.config/blob/CyberPunk_Neon/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#a5439e +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/CyberPunk_Neon/wpicon.png b/lang/en/.config/blob/CyberPunk_Neon/wpicon.png new file mode 100644 index 0000000..3f104f9 Binary files /dev/null and b/lang/en/.config/blob/CyberPunk_Neon/wpicon.png differ diff --git a/lang/en/.config/blob/CyberPunk_Neon/wpicon_wide.png b/lang/en/.config/blob/CyberPunk_Neon/wpicon_wide.png new file mode 100644 index 0000000..f1a903c Binary files /dev/null and b/lang/en/.config/blob/CyberPunk_Neon/wpicon_wide.png differ diff --git a/lang/en/.config/blob/Dracula/MBcolors.colorrc b/lang/en/.config/blob/Dracula/MBcolors.colorrc new file mode 100644 index 0000000..59ebf7d --- /dev/null +++ b/lang/en/.config/blob/Dracula/MBcolors.colorrc @@ -0,0 +1,15 @@ +item_radius = 2 +item_border = 1 +color_menu_border = #BD93F9 100 +color_sep_fg = #BD93F9 20 +color_title_bg = #FF79C6 60 +color_title_border = #FF79C6 50 +color_title_fg = #282A36 100 +sep_halign = Center +color_menu_bg = #282A36 90 +color_menu_bg_to = #1E1F29 90 +color_norm_fg = #f8f8f2 100 +color_sel_bg = #BD93F9 10 +color_sel_border = #BD93F9 40 +color_sel_fg = #FF79C6 100 +menu_gradient_pos=bottom_right diff --git a/lang/en/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..57a956c --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#282936', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..8643522 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/Dracula/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..a7b5f6e --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..71cf488 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b5896d2 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#282936', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..1fa2077 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..285d374 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..027603a --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..1e34007 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..98e6696 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..5671f4d --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..2f1a201 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + color3 = '#00f769', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..904e544 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + color3 = '#00f769', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..62981c9 --- /dev/null +++ b/lang/en/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#404357', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/Dracula/mvars.txt b/lang/en/.config/blob/Dracula/mvars.txt new file mode 100644 index 0000000..5549140 --- /dev/null +++ b/lang/en/.config/blob/Dracula/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰕥 +ok_fgcolor=#f472d0 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/Dracula/wpicon.png b/lang/en/.config/blob/Dracula/wpicon.png new file mode 100644 index 0000000..6b4b724 Binary files /dev/null and b/lang/en/.config/blob/Dracula/wpicon.png differ diff --git a/lang/en/.config/blob/Dracula/wpicon_wide.png b/lang/en/.config/blob/Dracula/wpicon_wide.png new file mode 100644 index 0000000..1cc28bf Binary files /dev/null and b/lang/en/.config/blob/Dracula/wpicon_wide.png differ diff --git a/lang/en/.config/blob/Gruvbox-Mabox/MBcolors.colorrc b/lang/en/.config/blob/Gruvbox-Mabox/MBcolors.colorrc new file mode 100644 index 0000000..b66bb02 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/MBcolors.colorrc @@ -0,0 +1,17 @@ +# item_radius = 1 +#item_border = 1 +# sep_height = 5 +sep_halign = Center +color_menu_bg = #282828 100 +color_menu_bg_to = #1d2021 100 +color_menu_border = #3c3836 100 +# color_norm_bg = #000000 00 +color_norm_fg = #d4be98 100 +color_sel_bg = #32302f 100 +color_sel_fg = #ddc7a1 100 +color_sel_border = #1d2021 100 +color_sep_fg = #504945 100 +color_title_fg = #ebdbb2 100 +color_title_bg = #1d2021 100 +color_title_border = #3c3836 100 +menu_gradient_pos=top_right diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..9dbb586 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..a40505c --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..f21b706 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-circle.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..8a30a80 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..e2ea8d8 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..54d126d --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#282828', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..64bc16e --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..3ac7e26 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..9d5a784 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..c296b04 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..b5aff47 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..15a5d79 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..0cb1413 --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + color3 = '#d79921', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..2c299ba --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + color3 = '#d79921', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..7ca8ffc --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/Gruvbox-Mabox/mvars.txt b/lang/en/.config/blob/Gruvbox-Mabox/mvars.txt new file mode 100644 index 0000000..d06f3eb --- /dev/null +++ b/lang/en/.config/blob/Gruvbox-Mabox/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#e6c637 +logo_out_color=#121315 +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/Gruvbox-Mabox/wpicon.png b/lang/en/.config/blob/Gruvbox-Mabox/wpicon.png new file mode 100644 index 0000000..cf50331 Binary files /dev/null and b/lang/en/.config/blob/Gruvbox-Mabox/wpicon.png differ diff --git a/lang/en/.config/blob/Gruvbox-Mabox/wpicon_wide.png b/lang/en/.config/blob/Gruvbox-Mabox/wpicon_wide.png new file mode 100644 index 0000000..bd8fc52 Binary files /dev/null and b/lang/en/.config/blob/Gruvbox-Mabox/wpicon_wide.png differ diff --git a/lang/en/.config/blob/Istredd/MBcolors.colorrc b/lang/en/.config/blob/Istredd/MBcolors.colorrc new file mode 100644 index 0000000..ef13a3b --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 0 +sep_height = 5 +sep_halign = center +color_menu_bg = #d3d4bf 90 +color_menu_border = #e9eeea 90 +color_norm_bg = #d3d4bf 90 +color_norm_fg = #0c1d23 90 +color_sel_bg = #e8e8dd 100 +color_sel_fg = #060b0a 90 +color_sel_border = #c6b76b 90 +color_sep_fg = #a29d62 20 +color_title_bg = #cdc76d 90 +color_title_border = #c6b76b 90 +color_title_fg = #0c1d23 90 +menu_gradient_pos = top_right +color_menu_bg_to = #d2cda1 90 diff --git a/lang/en/.config/blob/Istredd/MBcolors/close.xbm b/lang/en/.config/blob/Istredd/MBcolors/close.xbm new file mode 100644 index 0000000..ab7ff80 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/close.xbm @@ -0,0 +1,4 @@ +#define close_width 8 +#define close_height 8 +static unsigned char close_bits[] = { + 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/close_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/close_hover.xbm new file mode 100644 index 0000000..de852f9 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/close_hover.xbm @@ -0,0 +1,5 @@ +#define close_hover_width 12 +#define close_hover_height 12 +static unsigned char close_hover_bits[] = { + 0x00, 0x00, 0x06, 0x06, 0x0e, 0x07, 0x9c, 0x03, 0x98, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x98, 0x01, 0x9c, 0x03, 0x0e, 0x07, 0x06, 0x06, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/close_pressed.xbm b/lang/en/.config/blob/Istredd/MBcolors/close_pressed.xbm new file mode 100644 index 0000000..371a6b4 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/close_pressed.xbm @@ -0,0 +1,5 @@ +#define close_pressed_width 12 +#define close_pressed_height 12 +static unsigned char close_pressed_bits[] = { + 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/desk.xbm b/lang/en/.config/blob/Istredd/MBcolors/desk.xbm new file mode 100644 index 0000000..abca780 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/desk.xbm @@ -0,0 +1,4 @@ +#define desk_toggled_width 8 +#define desk_toggled_height 8 +static unsigned char desk_toggled_bits[] = { + 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/desk_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/desk_hover.xbm new file mode 100644 index 0000000..b6059d4 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/desk_hover.xbm @@ -0,0 +1,5 @@ +#define desk_hover_width 12 +#define desk_hover_height 12 +static unsigned char desk_hover_bits[] = { + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/desk_pressed.xbm b/lang/en/.config/blob/Istredd/MBcolors/desk_pressed.xbm new file mode 100644 index 0000000..f057b9a --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/desk_pressed.xbm @@ -0,0 +1,5 @@ +#define desk_pressed_width 12 +#define desk_pressed_height 12 +static unsigned char desk_pressed_bits[] = { + 0x00, 0x00, 0x02, 0x04, 0x0c, 0x03, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x0c, 0x03, 0x02, 0x04, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/desk_toggled.xbm b/lang/en/.config/blob/Istredd/MBcolors/desk_toggled.xbm new file mode 100644 index 0000000..b4b5330 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/desk_toggled.xbm @@ -0,0 +1,4 @@ +#define desk_width 8 +#define desk_height 8 +static unsigned char desk_bits[] = { + 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm new file mode 100644 index 0000000..0dc2f60 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define desk_toggled_hover_width 12 +#define desk_toggled_hover_height 12 +static unsigned char desk_toggled_hover_bits[] = { + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x04, 0x9e, 0x04, 0x9e, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x9e, 0x07, 0x92, 0x04, 0x92, 0x04, 0x9e, 0x07, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm b/lang/en/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm new file mode 100644 index 0000000..876649c --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm @@ -0,0 +1,5 @@ +#define desk_toggled_pressed_width 12 +#define desk_toggled_pressed_height 12 +static unsigned char desk_toggled_pressed_bits[] = { + 0x00, 0x00, 0x02, 0x04, 0x0c, 0x03, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x0c, 0x03, 0x02, 0x04, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/iconify.xbm b/lang/en/.config/blob/Istredd/MBcolors/iconify.xbm new file mode 100644 index 0000000..9a9743f --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/iconify.xbm @@ -0,0 +1,4 @@ +#define iconify_width 8 +#define iconify_height 8 +static unsigned char iconify_bits[] = { + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/iconify_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/iconify_hover.xbm new file mode 100644 index 0000000..53b1ba6 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/iconify_hover.xbm @@ -0,0 +1,5 @@ +#define iconify_hover_width 12 +#define iconify_hover_height 12 +static unsigned char iconify_hover_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0xfc, 0x03, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/iconify_pressed.xbm b/lang/en/.config/blob/Istredd/MBcolors/iconify_pressed.xbm new file mode 100644 index 0000000..21267b6 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/iconify_pressed.xbm @@ -0,0 +1,5 @@ +#define iconify_pressed_width 12 +#define iconify_pressed_height 12 +static unsigned char iconify_pressed_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x01, 0xf8, 0x01, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/max.xbm b/lang/en/.config/blob/Istredd/MBcolors/max.xbm new file mode 100644 index 0000000..505e112 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/max.xbm @@ -0,0 +1,4 @@ +#define titlebutton_max_2_width 8 +#define titlebutton_max_2_height 8 +static unsigned char titlebutton_max_2_bits[] = { + 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/max_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/max_hover.xbm new file mode 100644 index 0000000..6ef5391 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/max_hover.xbm @@ -0,0 +1,5 @@ +#define max_hover_width 12 +#define max_hover_height 12 +static unsigned char max_hover_bits[] = { + 0xff, 0x0f, 0xff, 0x0f, 0xff, 0x0f, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, + 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0xff, 0x0f }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/max_toggled.xbm b/lang/en/.config/blob/Istredd/MBcolors/max_toggled.xbm new file mode 100644 index 0000000..505e112 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/max_toggled.xbm @@ -0,0 +1,4 @@ +#define titlebutton_max_2_width 8 +#define titlebutton_max_2_height 8 +static unsigned char titlebutton_max_2_bits[] = { + 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm new file mode 100644 index 0000000..e2c8cfa --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define max_toggled_hover_width 12 +#define max_toggled_hover_height 12 +static unsigned char max_toggled_hover_bits[] = { + 0x00, 0x09, 0x00, 0x05, 0x00, 0x03, 0x00, 0x0f, 0xff, 0x00, 0xff, 0x00, + 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0xff, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/shade.xbm b/lang/en/.config/blob/Istredd/MBcolors/shade.xbm new file mode 100644 index 0000000..fcacf42 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/shade.xbm @@ -0,0 +1,4 @@ +#define shade_width 8 +#define shade_height 8 +static unsigned char shade_bits[] = { + 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/shade_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/shade_hover.xbm new file mode 100644 index 0000000..eac4e87 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/shade_hover.xbm @@ -0,0 +1,5 @@ +#define shade_hover_width 12 +#define shade_hover_height 12 +static unsigned char shade_hover_bits[] = { + 0x00, 0x00, 0xfe, 0x07, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/shade_pressed.xbm b/lang/en/.config/blob/Istredd/MBcolors/shade_pressed.xbm new file mode 100644 index 0000000..4a39d82 --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/shade_pressed.xbm @@ -0,0 +1,5 @@ +#define shade_pressed_width 12 +#define shade_pressed_height 12 +static unsigned char shade_pressed_bits[] = { + 0x00, 0x00, 0xf8, 0x01, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/shade_toggled.xbm b/lang/en/.config/blob/Istredd/MBcolors/shade_toggled.xbm new file mode 100644 index 0000000..594201e --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/shade_toggled.xbm @@ -0,0 +1,4 @@ +#define shade_toggled_width 8 +#define shade_toggled_height 8 +static unsigned char shade_toggled_bits[] = { + 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm b/lang/en/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm new file mode 100644 index 0000000..686fb9c --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define shade_toggled_hover_width 12 +#define shade_toggled_hover_height 12 +static unsigned char shade_toggled_hover_bits[] = { + 0x00, 0x00, 0xfe, 0x07, 0xfe, 0x07, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, + 0x02, 0x04, 0x02, 0x04, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/en/.config/blob/Istredd/MBcolors/themerc b/lang/en/.config/blob/Istredd/MBcolors/themerc new file mode 100644 index 0000000..89781de --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/themerc @@ -0,0 +1,82 @@ +#AB #579c8e +#NL #292929 +#AF #ffffff +#NB #383838 +#AL #292929 +#NF #dadada +#G? True +#R? False +#B? True +#H? False + +border.width: 1 +padding.width: 4 +padding.height: 4 +window.client.padding.width: 0 +window.client.padding.height: 0 +window.handle.width: 4 + +window.active.label.text.font: shadow=y:shadowtint=70:shadowoffset=1 +window.inactive.label.text.font: shadow=y:shadowtint=20:shadowoffset=1 + +*.active.border.color: #292929 +*.inactive.border.color: #292929 + +window.*.grip.bg: parentrelative +window.*.title.bg: flat vertical gradient +window.*.label.bg: parentrelative +window.*.button.*.bg: parentrelative +window.*.handle.bg: flat vertical gradient +window.*.text.justify: center + +window.active.title.bg.color: #579c8e +window.active.title.bg.colorTo: #41756a +window.active.label.text.color: #ffffff +window.active.button.*.unpressed.image.color: #ffffff +window.active.button.*.disabled.image.color: #8fbdb3 +window.active.button.*.hover.image.color: #abcdc6 +window.active.button.*.pressed.image.color: #2b4e47 +window.active.handle.bg.color: #383838 +window.active.handle.bg.colorTo: #252525 + +window.inactive.title.bg.color: #383838 +window.inactive.title.bg.colorTo: #2a2a2a +window.inactive.label.text.color: #898989 +window.inactive.button.*.unpressed.image.color: #898989 +window.inactive.button.*.disabled.image.color: #6e6e6e +window.inactive.button.*.hover.image.color: #dadada +window.inactive.button.*.pressed.image.color: #1c1c1c +window.inactive.handle.bg.color: #383838 +window.inactive.handle.bg.colorTo: #252525 + +menu.title.bg: flat vertical gradient +menu.title.bg.color: #579c8e +menu.title.bg.colorTo: #41756a +menu.title.text.color: #ffffff +menu.items.bg: flat diagonal gradient +menu.items.bg.color: #383838 +menu.items.bg.colorTo: #2a2a2a +menu.items.text.color: #dadada +menu.items.disabled.text.color: #6e6e6e +menu.items.active.bg: flat vertical gradient +menu.items.active.bg.color: #579c8e +menu.items.active.bg.colorTo: #41756a +menu.items.active.text.color: #ffffff +menu.items.active.disabled.text.color: #8fbdb3 +menu.separator.color: #292929 +menu.separator.padding.width: 0 +menu.separator.width: 1 + +osd.bg: flat diagonal gradient +osd.bg.color: #383838 +osd.bg.colorTo: #2a2a2a +osd.unhilight.bg: flat diagonal gradient +osd.unhilight.bg.color: #383838 +osd.unhilight.bg.colorTo: #2a2a2a +osd.hilight.bg: flat diagonal gradient +osd.hilight.bg.color: #579c8e +osd.hilight.bg.colorTo: #41756a +window.active.grip.bg.color: #222222 +window.active.grip.bg.colorTo: #222222 +window.inactive.grip.bg.color: #222222 +window.inactive.grip.bg.colorTo: #222222 diff --git a/lang/en/.config/blob/Istredd/MBcolors/themerc.bak b/lang/en/.config/blob/Istredd/MBcolors/themerc.bak new file mode 100644 index 0000000..89781de --- /dev/null +++ b/lang/en/.config/blob/Istredd/MBcolors/themerc.bak @@ -0,0 +1,82 @@ +#AB #579c8e +#NL #292929 +#AF #ffffff +#NB #383838 +#AL #292929 +#NF #dadada +#G? True +#R? False +#B? True +#H? False + +border.width: 1 +padding.width: 4 +padding.height: 4 +window.client.padding.width: 0 +window.client.padding.height: 0 +window.handle.width: 4 + +window.active.label.text.font: shadow=y:shadowtint=70:shadowoffset=1 +window.inactive.label.text.font: shadow=y:shadowtint=20:shadowoffset=1 + +*.active.border.color: #292929 +*.inactive.border.color: #292929 + +window.*.grip.bg: parentrelative +window.*.title.bg: flat vertical gradient +window.*.label.bg: parentrelative +window.*.button.*.bg: parentrelative +window.*.handle.bg: flat vertical gradient +window.*.text.justify: center + +window.active.title.bg.color: #579c8e +window.active.title.bg.colorTo: #41756a +window.active.label.text.color: #ffffff +window.active.button.*.unpressed.image.color: #ffffff +window.active.button.*.disabled.image.color: #8fbdb3 +window.active.button.*.hover.image.color: #abcdc6 +window.active.button.*.pressed.image.color: #2b4e47 +window.active.handle.bg.color: #383838 +window.active.handle.bg.colorTo: #252525 + +window.inactive.title.bg.color: #383838 +window.inactive.title.bg.colorTo: #2a2a2a +window.inactive.label.text.color: #898989 +window.inactive.button.*.unpressed.image.color: #898989 +window.inactive.button.*.disabled.image.color: #6e6e6e +window.inactive.button.*.hover.image.color: #dadada +window.inactive.button.*.pressed.image.color: #1c1c1c +window.inactive.handle.bg.color: #383838 +window.inactive.handle.bg.colorTo: #252525 + +menu.title.bg: flat vertical gradient +menu.title.bg.color: #579c8e +menu.title.bg.colorTo: #41756a +menu.title.text.color: #ffffff +menu.items.bg: flat diagonal gradient +menu.items.bg.color: #383838 +menu.items.bg.colorTo: #2a2a2a +menu.items.text.color: #dadada +menu.items.disabled.text.color: #6e6e6e +menu.items.active.bg: flat vertical gradient +menu.items.active.bg.color: #579c8e +menu.items.active.bg.colorTo: #41756a +menu.items.active.text.color: #ffffff +menu.items.active.disabled.text.color: #8fbdb3 +menu.separator.color: #292929 +menu.separator.padding.width: 0 +menu.separator.width: 1 + +osd.bg: flat diagonal gradient +osd.bg.color: #383838 +osd.bg.colorTo: #2a2a2a +osd.unhilight.bg: flat diagonal gradient +osd.unhilight.bg.color: #383838 +osd.unhilight.bg.colorTo: #2a2a2a +osd.hilight.bg: flat diagonal gradient +osd.hilight.bg.color: #579c8e +osd.hilight.bg.colorTo: #41756a +window.active.grip.bg.color: #222222 +window.active.grip.bg.colorTo: #222222 +window.inactive.grip.bg.color: #222222 +window.inactive.grip.bg.colorTo: #222222 diff --git a/lang/en/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..15b196f --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..f5d8978 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/Istredd/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..f38e095 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..a7e2425 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..92cdffe --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..fad0f08 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..63cbae5 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..c996341 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..afa9909 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..312d76c --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..d0a3477 --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..74f35ee --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..bc8a9bc --- /dev/null +++ b/lang/en/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/Istredd/mvars.txt b/lang/en/.config/blob/Istredd/mvars.txt new file mode 100644 index 0000000..ca62ce0 --- /dev/null +++ b/lang/en/.config/blob/Istredd/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/Istredd/wpicon.png b/lang/en/.config/blob/Istredd/wpicon.png new file mode 100644 index 0000000..510f066 Binary files /dev/null and b/lang/en/.config/blob/Istredd/wpicon.png differ diff --git a/lang/en/.config/blob/Istredd/wpicon_wide.png b/lang/en/.config/blob/Istredd/wpicon_wide.png new file mode 100644 index 0000000..fae7112 Binary files /dev/null and b/lang/en/.config/blob/Istredd/wpicon_wide.png differ diff --git a/lang/en/.config/blob/Mabox-superdesk/MBcolors.colorrc b/lang/en/.config/blob/Mabox-superdesk/MBcolors.colorrc new file mode 100644 index 0000000..07110b9 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 1 +sep_height = 2 +sep_halign = Right +menu_gradient_pos=top_right +color_menu_bg = #2c2c2c 90 +color_menu_bg_to = #111111 90 +color_menu_border = #2c2c2c 60 +color_norm_bg = #2b303b 0 +color_norm_fg = #aaaaaa 100 +color_sel_bg = #169f6f 30 +color_sel_fg = #ffffff 100 +color_sel_border = #169f6f 40 +color_sep_fg = #2A3833 100 +color_title_bg = #264D3F 100 +color_title_fg = #e9e9e9 100 +color_title_border = #169f6f 40 diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..a730c55 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..8d72614 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..9a3c9bc --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..9ae7887 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..fe7eec2 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..f8d3505 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..fa3f641 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..aaaaaf4 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..cee06f6 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..f539340 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..3f2e55f --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..7d585cd --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..746fcbc --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/Mabox-superdesk/mvars.txt b/lang/en/.config/blob/Mabox-superdesk/mvars.txt new file mode 100644 index 0000000..13377d3 --- /dev/null +++ b/lang/en/.config/blob/Mabox-superdesk/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/Mabox-superdesk/wpicon.png b/lang/en/.config/blob/Mabox-superdesk/wpicon.png new file mode 100644 index 0000000..fe84cac Binary files /dev/null and b/lang/en/.config/blob/Mabox-superdesk/wpicon.png differ diff --git a/lang/en/.config/blob/Mabox-superdesk/wpicon_wide.png b/lang/en/.config/blob/Mabox-superdesk/wpicon_wide.png new file mode 100644 index 0000000..e424a1f Binary files /dev/null and b/lang/en/.config/blob/Mabox-superdesk/wpicon_wide.png differ diff --git a/lang/en/.config/blob/Nordic/MBcolors.colorrc b/lang/en/.config/blob/Nordic/MBcolors.colorrc new file mode 100644 index 0000000..01c5200 --- /dev/null +++ b/lang/en/.config/blob/Nordic/MBcolors.colorrc @@ -0,0 +1,15 @@ +item_radius = 2 +item_border = 0 +color_menu_border = #4C566A 100 +color_sep_fg = #4C566A 20 +color_title_bg = #3B4252 100 +color_title_border = #2f343f 100 +color_title_fg = #ffffff 100 +sep_halign = center +color_menu_bg = #2f343f 100 +color_menu_bg_to = #2f343f 100 +color_norm_fg = #a8adb5 100 +color_sel_bg = #3B4252 100 +color_sel_border = #A3BE8C 20 +color_sel_fg = #A3BE8C 100 +menu_gradient_pos=top_right diff --git a/lang/en/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..2ec64e8 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#2E3440', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..b358e14 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..5181fec --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/blob/Nordic/conky/Network_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..3a6d216 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..2349df0 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..95bf11e --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#2E3440', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..c525d35 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..12f49c5 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..7f3ed7a --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..2288fbc --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..42f1f84 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..0ba9a14 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..df78c96 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + color3 = '#88C0D0', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..80f64e6 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + color3 = '#88C0D0', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..02c7ff3 --- /dev/null +++ b/lang/en/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/blob/Nordic/mvars.txt b/lang/en/.config/blob/Nordic/mvars.txt new file mode 100644 index 0000000..ca62ce0 --- /dev/null +++ b/lang/en/.config/blob/Nordic/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/en/.config/blob/Nordic/wpicon.png b/lang/en/.config/blob/Nordic/wpicon.png new file mode 100644 index 0000000..fe58dfc Binary files /dev/null and b/lang/en/.config/blob/Nordic/wpicon.png differ diff --git a/lang/en/.config/blob/Nordic/wpicon_wide.png b/lang/en/.config/blob/Nordic/wpicon_wide.png new file mode 100644 index 0000000..114e908 Binary files /dev/null and b/lang/en/.config/blob/Nordic/wpicon_wide.png differ diff --git a/lang/en/.config/conky/Better_Clock_mbcolor.conkyrc b/lang/en/.config/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/en/.config/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/en/.config/conky/CPU_mbcolor.conkyrc b/lang/en/.config/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..15b196f --- /dev/null +++ b/lang/en/.config/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/en/.config/conky/Info_Bar_mbcolor.conkyrc b/lang/en/.config/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..f5d8978 --- /dev/null +++ b/lang/en/.config/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/en/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/en/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/en/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/en/.config/conky/Network_mbcolor.conkyrc b/lang/en/.config/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..f38e095 --- /dev/null +++ b/lang/en/.config/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/en/.config/conky/PCmanFM_mbcolor.conkyrc b/lang/en/.config/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..a7e2425 --- /dev/null +++ b/lang/en/.config/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/en/.config/conky/Polaroid_mbcolor.conkyrc b/lang/en/.config/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/en/.config/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/en/.config/conky/RAM_mbcolor.conkyrc b/lang/en/.config/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..92cdffe --- /dev/null +++ b/lang/en/.config/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/en/.config/conky/mabox_info_mbcolor.conkyrc b/lang/en/.config/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..fad0f08 --- /dev/null +++ b/lang/en/.config/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/en/.config/conky/mabox_tools_mbcolor.conkyrc b/lang/en/.config/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..63cbae5 --- /dev/null +++ b/lang/en/.config/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/SIDEPANELS ${color0} ${hr 1}${voffset -2} +${color0}Main menu ${alignr}${color1}super / super+spacebar +${color0}Settings menu ${alignr} ${color1}super+s +${color0}Left ${alignr} ${color1}ctrl+super+left +${color0}Right ${alignr} ${color1}ctrl+super+right +${color0}Places ${alignr} ${color1}super+. +${color1}CONFIG MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panels ${alignr}${color1}super+alt+m +${color0}Wallpaper ${alignr}${color1}super+alt+w +${color0}ScreenLocker ${alignr}${color1}super+alt+l +${color1}Mabox Linux Tools ${color0} ${hr 1}${voffset -2} +${color0}Command Palette ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Exit dialog ${alignr}${color1}super+x +${color0}Screenshot tool ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/en/.config/conky/menuscripts/Mabox_logo_SVG.csv b/lang/en/.config/conky/menuscripts/Mabox_logo_SVG.csv new file mode 100644 index 0000000..5630f8f --- /dev/null +++ b/lang/en/.config/conky/menuscripts/Mabox_logo_SVG.csv @@ -0,0 +1,33 @@ + Website,xdg-open https://maboxlinux.org + Community forum,xdg-open https://forum.maboxlinux.org + Manual,xdg-open https://manual.maboxlinux.org +^sep() + More Links,^checkout(more) +^sep(Mabox tools) +Mabox Control Center,mcc +Welcome Screen,mwelcome +^sep(Menus) +Main menu ,mb-jgtools main +Mabox Config Menu  + s ,mb-jgtools settings +^sep() +Left Sidepanel C +  + Left ,mb-jgtools places +Right Sidepanel C +  + Right ,mb-jgtools right +^sep() +Places Menu  + . ,mb-places -s +Logout Menu  + x ,mb-jgtools mblogout +ScreenShot/Recorder  + PrtScr ,mb-jgtools screenshot +^sep(Other) +Conky Manager,colorizer-conky -s +^tag(more) +^sep(More Links) + Repo,xdg-open https://repo.maboxlinux.org + Developer Blog,xdg-open https://blog.maboxlinux.org +^sep() + Donate,xdg-open https://ko-fi.com/maboxlinux + Mabox on Distrowatch,xdg-open https://distrowatch.com/table.php?distribution=mabox +^sep(Social media) + Reddit,xdg-open https://old.reddit.com/r/MaboxLinux/ + Youtube,xdg-open https://www.youtube.com/c/MaboxLinux + Odysee,xdg-open https://odysee.com/@mabox-linux:8 + Facebook,xdg-open https://facebook.com/maboxlinux/ + Twitter,xdg-open https://twitter.com/MaboxLinux/ diff --git a/lang/en/.config/conky/mount_points_mbcolor.conkyrc b/lang/en/.config/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..c996341 --- /dev/null +++ b/lang/en/.config/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/en/.config/conky/quoter_mbcolor.conkyrc b/lang/en/.config/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..afa9909 --- /dev/null +++ b/lang/en/.config/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/en/.config/conky/shortcuts_mbcolor.conkyrc b/lang/en/.config/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..312d76c --- /dev/null +++ b/lang/en/.config/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}RUN${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}file manager ${alignr}${color1}super+f +${color0}web browser ${alignr}${color1}super+w +${color0}text editor ${alignr}${color1}super+e +${color0}file search ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}internet radio ${alignr}${color1}super+r +${color0}volume control ${alignr}${color1}super+v +${color0}toggle Picom ${alignr}${color1}super+p +${color0}toggle Conky ${alignr}${color1}super+c +${color0}lock screen ${alignr}${color1}super+l +${color0}exit ${alignr}${color1}super+x +${color1}WINDOWS ${color0} ${hr 1}${voffset -2} +${color0}close ${alignr} ${color1}alt+F4 +${color0}iconify ${alignr} ${color1}alt+F5 +${color0}maximize ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}show desktop ${alignr} ${color1}super+d +${color0}un/decorate ${alignr} ${color1}super+b +${color0}toggle fullscreen ${alignr} ${color1}F11 +${color1}windows placement: +${color0} - half screen ${alignr} ${color1}super+arrows +${color0} - 1/4 screen ${alignr} ${color1}super+numpad[1..9] +${color1}DESKTOPS ${color0} ${hr 1}${voffset -2} +${color0}go to desktop ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/en/.config/conky/sysinfo_graph_mbcolor.conkyrc b/lang/en/.config/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..d0a3477 --- /dev/null +++ b/lang/en/.config/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/conky/sysinfo_mbcolor.conkyrc b/lang/en/.config/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..1d9fea3 --- /dev/null +++ b/lang/en/.config/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +#${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/en/.config/conky/tiling_terminal_mbcolor.conkyrc b/lang/en/.config/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..bc8a9bc --- /dev/null +++ b/lang/en/.config/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TILING TERMINAL WORKFLOW +${color1}RUN ${color0}${hr 1} +${voffset -2}${color0}Terminal ${alignr}${color1}super+t +${color0}Quick terminal (show/hide) ${alignr}${color1}ctrl+~,F12 +${color1}SPLIT ${color0}${hr 1} +${voffset -2}${color0}horizontally ${alignr}${color1}ctrl+shift+o +${color0}vertically ${alignr}${color1}ctrl+shift+e +${color1}USEFULL ACTIONS ${color0}${hr 1} +${voffset -2}${color0}change focus${alignr}${color1}alt+arrows +${color0}resize active ${alignr}${color1}ctrl+shift+arrows +${color0}zoom active terminal ${alignr}${color1}ctrl+shift+x +${color0}fullscreen ${alignr}${color1}super+enter,F11 +${color0}close terminal ${alignr}${color1}ctrl+shift+w +${color1}FONT SIZE ${color0}${hr 1}${voffset -2} +${color0}increase ${alignr}${alignr}${color1}ctrl++ +${color0}decrease ${alignr}${color1}ctrl+- +${color0}reset ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/en/.config/fastfetch/config.jsonc b/lang/en/.config/fastfetch/config.jsonc new file mode 100644 index 0000000..3a6c6b7 --- /dev/null +++ b/lang/en/.config/fastfetch/config.jsonc @@ -0,0 +1,120 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "source": "~/.config/fastfetch/mabox.ascii", + "padding": { + "left": 1 + }, + "type": "file", + "color": { + "1": "green", + "2": "white", + } + }, + "display": { + "separator": " " + }, + "modules": [ + // Title + { + "type": "title", + "format": "{#1}╭───────────── {#}{user-name-colored}" + }, + // System Information + { + "type": "custom", + "format": "{#1}│ {#}System Information" + }, + { + "type": "os", + "key": "{#separator}│ {#keys}󰍹 OS" + }, + { + "type": "kernel", + "key": "{#separator}│ {#keys}󰒋 Kernel" + }, + { + "type": "uptime", + "key": "{#separator}│ {#keys}󰅐 Uptime" + }, + { + "type": "packages", + "key": "{#separator}│ {#keys}󰏖 Packages", + "format": "{all}" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Desktop Environment + { + "type": "custom", + "format": "{#1}│ {#}Window Manager" + }, + //{ + //"type": "de", + //"key": "{#separator}│ {#keys}󰧨 DE" + //}, + { + "type": "wm", + "key": "{#separator}│ {#keys}󱂬 WM" + }, + { + "type": "wmtheme", + "key": "{#separator}│ {#keys}󰉼 Theme" + }, + { + "type": "display", + "key": "{#separator}│ {#keys}󰹑 Resolution" + }, + { + "type": "shell", + "key": "{#separator}│ {#keys}󰞷 Shell" + }, + { + "type": "terminalfont", + "key": "{#separator}│ {#keys}󰛖 Font" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Hardware Information + { + "type": "custom", + "format": "{#1}│ {#}Hardware Information" + }, + { + "type": "cpu", + "key": "{#separator}│ {#keys}󰻠 CPU" + }, + { + "type": "gpu", + "key": "{#separator}│ {#keys}󰢮 GPU" + }, + { + "type": "memory", + "key": "{#separator}│ {#keys}󰍛 Memory" + }, + { + "type": "disk", + "key": "{#separator}│ {#keys}󰋊 Disk (/)", + "folders": "/" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Colors + { + "type": "colors", + "key": "{#separator}│", + "symbol": "circle" + }, + // Footer + { + "type": "custom", + "format": "{#1}╰───────────────────────────────╯" + } + ] +} diff --git a/lang/en/.config/jgmenu/append.csv b/lang/en/.config/jgmenu/append.csv new file mode 100644 index 0000000..0afe93c --- /dev/null +++ b/lang/en/.config/jgmenu/append.csv @@ -0,0 +1,25 @@ +^sep() +#Keybindings, ^pipe(jgkeys-pipe),key_bindings +Keybindings, mbhelper -s,key_bindings +^sep() +Screenshot,mb-jgtools screenshot,emblem-photos + +^sep() +Lock screen,mbscreenlocker,system-lock-screen + +^sep() +Exit...,mb-jgtools mblogout,system-shutdown + +^tag(settings) +. ~/.config/mabox/settings.csv + + +^sep(Help) +User Guide (online),^checkout(userguide),distributor-logo-mabox +MaboxForum,exo-open --launch WebBrowser https://forum.maboxlinux.org/,distributor-logo-mabox + + +^tag(userguide) +. /usr/share/mb-jgtools/userguide.csv + +. ~/.config/mabox/settings_tags.csv diff --git a/lang/en/.config/jgmenu/prepend.csv b/lang/en/.config/jgmenu/prepend.csv new file mode 100644 index 0000000..cf86ef6 --- /dev/null +++ b/lang/en/.config/jgmenu/prepend.csv @@ -0,0 +1,5 @@ +@text,,10,6,150,20,0,left,top,auto,#000000, +@search,,44,6,150,20,2,left,top,auto,#000000 0,Type to search +^sep() +. ~/.config/mabox/favorites.csv + diff --git a/lang/en/.config/jgmenu/sub-append.csv b/lang/en/.config/jgmenu/sub-append.csv new file mode 100644 index 0000000..1d70da5 --- /dev/null +++ b/lang/en/.config/jgmenu/sub-append.csv @@ -0,0 +1,26 @@ + +^sep() +#Keybindings, ^pipe(jgkeys-pipe),key_bindings +Keybindings, mbhelper -s,key_bindings +^sep() +Screenshot,mb-jgtools screenshot,emblem-photos + +^sep() +Lock screen,mbscreenlocker,system-lock-screen + +^sep() +Exit...,mb-jgtools mblogout,system-shutdown + +^tag(settings) +. ~/.config/mabox/settings.csv + + +^sep(Help) +User Guide (online),^checkout(userguide),distributor-logo-mabox +MaboxForum,exo-open --launch WebBrowser https://forum.maboxlinux.org/,distributor-logo-mabox + + +^tag(userguide) +. /usr/share/mb-jgtools/userguide.csv + +. ~/.config/mabox/settings_tags.csv diff --git a/lang/en/.config/mabox/exit.csv b/lang/en/.config/mabox/exit.csv new file mode 100644 index 0000000..e543a77 --- /dev/null +++ b/lang/en/.config/mabox/exit.csv @@ -0,0 +1,11 @@ +## Comment out with # if you want to hide some lines +^sep(Exit...) +Logout,openbox --exit,system-log-out +#Suspend,systemctl suspend,system-suspend +#Hibernate,systemctl hibernate,system-hibernate +Reboot,systemctl reboot,system-reboot +Lock screen, mbscreenlocker,system-lock-screen +Shutdown,systemctl poweroff,system-shutdown +^sep() +Configure options,xdg-open $HOME/.config/mabox/exit.csv,geany + diff --git a/lang/en/.config/mabox/favorites.csv b/lang/en/.config/mabox/favorites.csv new file mode 100644 index 0000000..6ecfddb --- /dev/null +++ b/lang/en/.config/mabox/favorites.csv @@ -0,0 +1,11 @@ +^sep(Favorites) +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,package-manager-icon +^sep() +#Home Directory,^pipe(jgbrowser ~),folder-home +#^sep() +Mabox Config,^checkout(settings),distributor-logo-mabox +^sep(Applications) +#^sep() diff --git a/lang/en/.config/mabox/jgtype.csv b/lang/en/.config/mabox/jgtype.csv new file mode 100644 index 0000000..495b10a --- /dev/null +++ b/lang/en/.config/mabox/jgtype.csv @@ -0,0 +1,23 @@ +^sep(jgtype - type command helper) +Updates,^checkout(updates) +Mirrors and keys,^checkout(mirrors) +^sep() +Configure,xdg-open ~/.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/.config/mabox/mbhelper.csv b/lang/en/.config/mabox/mbhelper.csv new file mode 100644 index 0000000..e6b8269 --- /dev/null +++ b/lang/en/.config/mabox/mbhelper.csv @@ -0,0 +1,107 @@ +^sep(Applications) + super-f File Manager PCmanFM,exo-open --launch FileManager + super-w Web browser,exo-open --launch WebBrowser + super-t Terminal,exo-open --launch TerminalEmulator + super-F12 Quake-like Terminal,quake-term + super-e Text Editor,geany + super-g Galculator,galculator + super-h Btop resource monitor,^term(btop) + super-/ File Search,fsearch + super-r PyRadio,terminator -e 'pyradio' + super-v Volume control,pavucontrol + super-p toggle Picom,compton_toggle + super-c toggle Conky,conky_toggle + super-. Places menu,mb-places -s + super-l ScreenLocker,mbscreenlocker + super-x Logout dialog,mb-jgtools mblogout + +^sep(Menu/Sidepanels),,,,#menu#sidepanel + super Main menu,mb-jgtools main,,,#menu + super-s Settings Menu,mb-jgtools settings,,,#menu + ctrl-super-left Left sidepanel,mb-jgtools places,,,#sidepanel#menu + ctrl-super-right Right sidepanel ,mb-jgtools right,,,#sidepanel#menu + super-alt-d Toggle Dock AutoHide (if you use Gkrellm in dock),xdotool key Super+Alt+d,,,#sidepanel + +^sep(Windows and Desktops),,,,#windows#move + super-~ Expose,skippy-xd-fix,,,#windows#move#switch + super-d Show desktop,show_desktop,,,#windows#move + super-Arrows Half screen,,,,#windows#move + F11/super-Enter Fullscreen,,,,#windows#move + +^sep(DesktopGrid),,,,#desktopgrid + super-KP_7 [on grid] move/resize window topleft ,superclick topleft,,,#desktopgrid#windows#move + super-KP_8 [on grid] move/resize window top,superclick top,,,#desktopgrid#windows#move + super-KP_9 [on grid] move/resize window topright,superclick topright,,,#desktopgrid#windows#move + super-KP_4 [on grid] move/resize window left,superclick left,,,#desktopgrid#windows#move + super-KP_5 [on grid] move/resize window center,superclick center,,,#desktopgrid#windows#move + super-KP_6 [on grid] move/resize window right,superclick right,,,#desktopgrid#windows#move + super-KP_1 [on grid] move/resize window bottomleft,superclick bottomleft,,,#desktopgrid#windows#move + super-KP_2 [on grid] move/resize window bottom,superclick bottom,,,#desktopgrid#windows#move + super-KP_3 [on grid] move/resize window bottomright,superclick bottomright,,,#desktopgrid#windows#move + DesktopGrid - show image helper,drawgrid,,,#desktopgrid#windows#move + Edit DesktopGrid config file ,xdg-open ~/.config/desktopgrid/desktopgrid.cfg,,,#desktopgrid#config + +^sep(Helpers) + super-alt-t Tile helper,jgtile,,,#pipemenu + super-alt-h History helper,jghistory-pipe -s,,,#pipemenu + super-alt-e Espanso - text expander,jgespanso-pipe -s,,,#pipemenu + super-alt-o Colorizer,colorizer -s + super-alt-c Color Menu,colormenu + super-alt-m Configure Menu/Sidepanels,jgmenusettings-pipe -s,,,#pipemenu + super-alt-w Configure Wallpaper and ScreenLocker,jgwallpaperchanger -s,,,#pipemenu + super-alt-k Configure Conky,jgconky-pipe -s,,,#pipemenu + super-alt-p Configure Tint2 panel,jgtint2-pipe -s,,,#pipemenu + DesktopGrid menu,jgdeskgrid -s,,,#pipemenu#gap#column#row + DeskMngr menu,jgdeskmngr -s,,,#pipemenu + Windows and Desktops menu,jgdesktops -s,,,#pipemenu + SSH Connections menu,jgssh -s,,,#pipemenu + SysInfo menu,jgsysinfo-pipe -s,,,#pipemenu + +^sep(Openbox),,,,#openbox#ob + Obconf - Openbox configuration manager,obconf,,,#openbox#ob + Edit rc.xml OpenBox config file,xdg-open ~/.config/openbox/rc.xml,,,#openbox#ob + Reconfigure OpenBox,openbox --reconfigure,,,#openbox#ob + All Keybindings,mb-kb --gui &>/dev/null,,,#shortcuts#openbox#ob + +^sep(Mabox),,,,#mabox + Mabox Control Center,mcc,,,#mabox + Welcome Screen,mwelcome,,,#mabox + Blob theme manager,mb-obthemes,,,#theme#mabox + Look and feel,lxappearance,,,#theme + Screen resolution,arandr,,,#monitor + Screen resolution (LXRandR),lxrandr,,,#monitor + Power manager,mate-power-preferences,,, + Notifications,xfce4-notifyd-config,,, + Mouse and Keyboard,lxinput,,, + User Guide (online),xdg-open https://manual.maboxlinux.org/en/,,,#mabox#help#support + Forum (online),xdg-open https://forum.maboxlinux.org/,,,#mabox#help#support + +^sep(Software Management),,,,#install#update#pamac#mirrors + Pamac - package manager,pamac-manager,,,#install#update + System update (Pamac),pamac-manager --updates,,,#update + System update (Yay - cli),mb-cli update,,,#update + Mirror ranking all,mb-cli mirrors_all,,,#install#update + Mirror ranking fast,mb-cli mirrors,,,#install#update + Mirror ranking by GEOIP,mb-cli mirrors_geo,,,#install#update + +^sep(Manjaro Settings Manager),,,,#manjaro#settings#msm + Manjaro Settings Manager,manjaro-settings-manager,,,#msm +^sep() + Locale Settings,manjaro-settings-manager -m msm_locale + Language Packages,manjaro-settings-manager -m msm_language_packages + Kernels,manjaro-settings-manager -m msm_kernel + User Accounts,manjaro-settings-manager -m msm_users + Time and Date,manjaro-settings-manager -m msm_timedate + Keyboard Settings,manjaro-settings-manager -m msm_keyboard + Hardware Configuration,manjaro-settings-manager -m msm_mhwd + Install/remove software (Pamac),pamac-manager,,,#install + +^sep(Autostart),,,,#autostart#openbox#ob + Choose apps/services to autostart(GUI editor),yautostart,,,#autostart#openbox#ob + Edit Autostart config file,xdg-open ~/.config/openbox/autostart,,,#autostart#config#openbox#ob + +^sep(Wallpaper),,,,#wallpapers + Set random wallpaper,mbwallpaper -o,,,#wallpaper + Run wallpaper slideshow,run_wallpaperslideshow,,,#wallpaper + Choose Wallpaper...,mbwallpaper -c,,,#wallpaper + diff --git a/lang/en/.config/mabox/places-append.csv b/lang/en/.config/mabox/places-append.csv new file mode 100644 index 0000000..e933ddd --- /dev/null +++ b/lang/en/.config/mabox/places-append.csv @@ -0,0 +1,30 @@ +### Your own commands in left sidepanel (ctrl + win + Left Arrow) - BOTTOM +# +# Syntax +# Commands: +# Label,command,icon (optional) +# +# ^sep() # separator - line +# ^sep(NAME) # separator +# +# Comment out line to disable +########################## + +^sep(Your own commands) + Edit own commands,xdg-open ~/.config/mabox/places-append.csv +^sep() + FSearch - file search  + / ,fsearch + PyRadio - Internet Radio Player  + r ,terminator --icon=/usr/share/icons/pyradio.png --geometry=564x440-20-20 -x pyradio -lt + btop - Resource monitor  + h ,^term(btop) + System Info (inxi),terminator -T 'inxi system info (Q to close)' -x bash -c "inxi -Fazy -c2 | less -R" + Weather forecast,terminator -T "Weather forecast" --geometry=1030x740 -e "curl wttr.in ; read" +#Terminator (advanced demo),terminator -m -j ~/.config/terminator/2-3-grid.json +^sep() +#Logout Dialog +^sep() + ⏻ Exit...  + x ,mb-jgtools mblogout,system-shutdown +^sep() + +# or all logout options +#. ~/.config/mabox/exit.csv + diff --git a/lang/en/.config/mabox/places-prepend.csv b/lang/en/.config/mabox/places-prepend.csv new file mode 100644 index 0000000..620b6cc --- /dev/null +++ b/lang/en/.config/mabox/places-prepend.csv @@ -0,0 +1,21 @@ +### Your own commands in left sidepanel (ctrl + TAB) - TOP +# +# Syntax +# Commands: +# Label,command,icon (optional) +# +# ^sep() # separator - line +# ^sep(NAME) # separator +# +# Comment out line to disable +########################## + +#^sep(My own commands) +#FSearch,fsearch + +# Examples (uncomment to enable) + +#^sep(Graphics) +#The Gimp,gimp +#Inkscape,inkscape +#Blender 3D,blender diff --git a/lang/en/.config/mabox/right-append.csv b/lang/en/.config/mabox/right-append.csv new file mode 100644 index 0000000..23556a6 --- /dev/null +++ b/lang/en/.config/mabox/right-append.csv @@ -0,0 +1,6 @@ +# Here you can customize right sidepanel +# Format: +# Label,command,icon +# Example: +^sep(Custom commands) +Configure...,xdg-open $HOME/.config/mabox/right-append.csv,add diff --git a/lang/en/.config/mabox/right-prepend.csv b/lang/en/.config/mabox/right-prepend.csv new file mode 100644 index 0000000..7693a4f --- /dev/null +++ b/lang/en/.config/mabox/right-prepend.csv @@ -0,0 +1,3 @@ +# Here you can customize right sidepanel +# Format: +# Label,command,icon diff --git a/lang/en/.config/mabox/settings.csv b/lang/en/.config/mabox/settings.csv new file mode 100644 index 0000000..6e9c479 --- /dev/null +++ b/lang/en/.config/mabox/settings.csv @@ -0,0 +1,34 @@ +^sep(Preferences) +Mabox Control Center,mcc,distributor-logo-mabox +^sep(Tint2 Panel) +Add/remove launchers...,jgtint2launcher,tint2 +Tint2 panels,^pipe(jgtint2-pipe),tint2conf +^sep(Mabox Themes) +Theme manager,mb-obthemes,preferences-desktop-theme +^sep(Desktop) +Wallpaper,jgwallpaperchanger -s,nitrogen +Configure Fonts,colorizer-fonts -s,fonts +Colorizer,colorizer -s,colorizer +Look and Feel,lxappearance,preferences-desktop-theme +Reload GTK,reload-gtk,reload +^sep() +Menu/Sidepanels,^pipe(jgmenusettings-pipe),menu-editor +Conkies,colorizer-conky -s,desktop-effects +Compositor,jgpicom-pipe -s,compton +Notifications,xfce4-notifyd-config,xfce4-notifyd +^sep() +Screen resolution,arandr,xfce4-display +Screen resolution (LXRandR),lxrandr,xfce4-display +^sep(Settings) +Preferred applications,exo-preferred-applications,preferences-desktop-default-applications +Power Manager,xfce4-power-manager-settings,mate-power-manager +Login Manager settings,lightdm-gtk-greeter-settings-pkexec,lightdm-gtk-greeter-settings +Mouse and Keyboard,lxinput,mouse +^sep(Openbox) +OBconf,obconf-qt,openbox +Autostart,^checkout(autostart),geany +RC - configuration file,xdg-open ~/.config/openbox/rc.xml,geany +Reconfigure Openbox,openbox --reconfigure,openbox +^sep() +Edit Settings menu,xdg-open ~/.config/mabox/settings.csv,geany + diff --git a/lang/en/.config/mabox/settings_tags.csv b/lang/en/.config/mabox/settings_tags.csv new file mode 100644 index 0000000..79b682a --- /dev/null +++ b/lang/en/.config/mabox/settings_tags.csv @@ -0,0 +1,4 @@ +^tag(autostart) +^sep(Autostart) +Choose apps/services (GUI Editor),yautostart,gtk-execute +Edit autostart file (advanced),xdg-open ~/.config/openbox/autostart,geany diff --git a/lang/en/.config/pyradio/stations.csv b/lang/en/.config/pyradio/stations.csv new file mode 100644 index 0000000..4c10451 --- /dev/null +++ b/lang/en/.config/pyradio/stations.csv @@ -0,0 +1,44 @@ +Chillout (Groove Salad - SomaFM),https://somafm.com/groovesalad.pls +Your Classical - Relax,http://relax.stream.publicradio.org/relax.mp3 +Synphaera Radio (Space Music),https://somafm.com/synphaera.pls +Ambient Sleeping Pill,http://radio.stereoscenic.com/asp-h +Public Domain,- +Public Domain Classical,http://relay.publicdomainradio.org/classical.mp3.m3u +Public Domain Jazz,http://relay.publicdomainradio.org/jazz_swing.mp3.m3u +Echoes of Bluemars,- +Bluemars,http://echoesofbluemars.org/bluemars.m3u +Cryosleep,http://streams.echoesofbluemars.org:8000/cryosleep.m3u +Voices from Within,http://streams.echoesofbluemars.org:8000/voicesfromwithin.m3u +Lofi,- +Lofi Girl,https://play.streamafrica.net/lofiradio +Chillhop,http://stream.zeno.fm/fyn8eh3h5f8uv +Box Lofi,http://stream.zeno.fm/f3wvbbqmdg8uv +The Bootleg Boy,http://stream.zeno.fm/0r0xa792kwzuv +Radio Spinner,https://live.radiospinner.com/lofi-hip-hop-64 +SmoothChill,https://media-ssl.musicradio.com/SmoothChill +SomaFM,- +American Roots (Boot Liquor),https://somafm.com/bootliquor.pls +Celtic (ThistleRadio),https://somafm.com/thistle.pls +Atmospheric (Drone Zone),https://somafm.com/dronezone.pls +Ambient (Space Station),https://somafm.com/spacestation.pls +Covers,https://somafm.com/covers.pls +Downtempo (Secret Agent),https://somafm.com/secretagent.pls +Dub Step (Dub Step Beyond),https://somafm.com/dubstep.pls +Folk (Folk Forward),http://somafms.com/folkfwd.pls +House (Beat Blender),http://somafms.com/beatblender.pls +Indie Pop (Indie Pop Rocks!),https://somafm.com/indiepop130.pls +Intelligent dance music (Cliq Hop),https://somafm.com/cliqhop.pls +Jazz (Sonic Universe),https://somafm.com/startstream=sonicuniverse.pls +Lounge (Illinois Street Lounge),https://somafm.com/illstreet.pls +Pop (PopTron!),https://somafm.com/poptron.pls +Progressive (Tags Trance Trip),https://somafm.com/tagstrance.pls +Rock (Digitalis),https://somafm.com/digitalis.pls +Groove Salad Classic (Early 2000s Ambient),https://somafm.com/gsclassic.pls +n5MD Radio (Ambient and Experimental),https://somafm.com/n5md.pls +Vaporwaves,https://somafm.com/vaporwaves.pls +The Trip,https://somafm.com/thetrip.pls +Heavyweight Reggae,https://somafm.com/reggae.pls +Metal Detector,https://somafm.com/metal.pls +Other,- +Radio Levač (Serbian Folk and Country),http://213.239.205.210:8046/stream +Radio 35 (Serbian and English Pop Folk Country and Hits),http://stream.radio035.net:8010/listen.pls diff --git a/lang/en/.config/tint2/Istredd.tint2rc b/lang/en/.config/tint2/Istredd.tint2rc new file mode 100644 index 0000000..c606fad --- /dev/null +++ b/lang/en/.config/tint2/Istredd.tint2rc @@ -0,0 +1,477 @@ +#---- Generated by tint2conf 9d1f ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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: Button, Egzekutor, 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPEPPPLTSEEPBCPP +panel_size = 95% 32 +panel_margin = 2 2 +panel_padding = 0 1 1 +panel_background_id = 1 +wm_menu = 1 +panel_dock = 0 +panel_pivot_struts = 0 +panel_position = top center horizontal +panel_layer = bottom +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 = 1 +urgent_nb_of_blink = 8 +task_maximum_size = 100 100 +task_padding = 4 4 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 = 2 2 2 +systray_background_id = 7 +systray_sort = ascending +systray_icon_size = 0 +systray_icon_asb = 100 0 0 +systray_monitor = 1 +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 6 2 2 +launcher_background_id = 7 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme = Papirus +launcher_icon_theme_override = 1 +startup_notifications = 0 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %H:%M +time2_format = +time1_font = sans 14 +time1_timezone = +time2_timezone = +time2_font = sans 6 +clock_font_color = #ffffff 100 +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 = jgclock ipc +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 = %p +bat2_format = +battery_padding = 4 0 +battery_background_id = 7 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_name = mb-t2wall +execp_command = jgwallpaperchanger icon +execp_interval = 60 +execp_has_icon = 1 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 0 +execp_monitor = all +execp_tooltip = L: Random Wallpaper R: Wallpaper Desktop Styling menu +execp_lclick_command = jgwallpaperchanger lclick +execp_rclick_command = jgwallpaperchanger ipc +execp_mclick_command = +execp_uwheel_command = jgwallpaperchanger wheelup +execp_dwheel_command = jgwallpaperchanger wheeldown +execp_font = Symbols Nerd Font 16 +execp_font_color = #DDDDDD 100 +execp_padding = 1 1 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 30 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 4 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 16 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 7 +execp_centered = 1 + +#------------------------------------- +# Executor 3 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu ipc +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #DDDDDD 100 +execp_padding = 1 1 +execp_background_id = 7 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left SidePanel - Places (C-W-Left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 0 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = LMB -> main menu, RMB -> panel settings +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +## Button 3 "SHOW DESKTOP" +## To enable uncomment section below and add "P" to panel_items directive +#button = new +#button_icon = desktop +#button_text = +#button_tooltip = L: Show Desktop, R: Windows List, M: Expose windows +#button_lclick_command = show_desktop +#button_rclick_command = jgdesktops ipc +#button_mclick_command = skippy-xd --expose +#button_uwheel_command = ~/.config/tint2/scripts/desktop next +#button_dwheel_command = ~/.config/tint2/scripts/desktop prev +#button_font = Symbols Nerd Font 14 +#button_font_color = #deddda 100 +#button_padding = 2 2 +#button_background_id = 7 +#button_centered = 1 +#button_max_icon_size = 0 + + +#------------------------------------- +# Button 5 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: File manager (W-f), R: Places menu (W-.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (W-t), R: Quake-term (F12) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Web browser (W-w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = L: flameshot, R: Screenshot Tool (W-PrtScr) +button_lclick_command = flameshot gui +button_rclick_command = mb-jgtools screenshot ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 9 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (W-x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 10 +button = new +button_text =  +button_tooltip = Right SidePanel (C-W-Right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +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/.config/tint2/dracula.tint2rc b/lang/en/.config/tint2/dracula.tint2rc new file mode 100644 index 0000000..5217a9a --- /dev/null +++ b/lang/en/.config/tint2/dracula.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf dc5e ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #1e1f29 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #282a36 60 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #44475a 100 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:ET:FEEPSBECPP +panel_size = 90% 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #a89984 100 +task_active_font_color = #ddc7a1 100 +task_iconified_font_color = #928374 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #ff79c6 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Today is %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = +bat2_format = +battery_padding = 2 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +execp_lclick_command = show_desktop +execp_rclick_command = skippy-xd-fix +execp_mclick_command = jgdesktops ipc +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #bd93f9 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #f1fa8c 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = mb-jgtools settings ipc +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #bd93f9 100 +tooltip_font = Rubik 10 + diff --git a/lang/en/.config/tint2/fullwidth_transp_dark.tint2rc b/lang/en/.config/tint2/fullwidth_transp_dark.tint2rc new file mode 100644 index 0000000..0b3f410 --- /dev/null +++ b/lang/en/.config/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 = Papirus +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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = jgclock ipc +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 -> Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = +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/.config/tint2/gradient.tint2rc b/lang/en/.config/tint2/gradient.tint2rc new file mode 100644 index 0000000..620e7f5 --- /dev/null +++ b/lang/en/.config/tint2/gradient.tint2rc @@ -0,0 +1,389 @@ +#---- Generated by tint2conf 6e9d ---- +# 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 = vertical +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: Inactive desktop name +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: Active desktop name, Active task +rounded = 2 +border_width = 1 +border_sides = TBLR +border_content_tint_weight = 10 +background_content_tint_weight = 0 +background_color = #292929 100 +border_color = #33d17a 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 taskbar, Battery, Clock, Inactive taskbar, Panel, Systray +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: Default task +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 = PPLT:S:B:CPP +panel_size = 100% 36 +panel_margin = 0 0 +panel_padding = 2 1 2 +panel_background_id = 4 +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.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 0 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 = 12 4 +taskbar_name_background_id = 2 +taskbar_name_active_background_id = 3 +taskbar_name_font = Ubuntu 10 +taskbar_name_font_color = #c0bfbc 100 +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 = 0 +urgent_nb_of_blink = 10 +task_maximum_size = 160 20 +task_padding = 4 4 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 = 7 +task_active_background_id = 3 +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 0 +systray_background_id = 4 +systray_sort = ascending +systray_icon_size = 28 +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_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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %a %e %b %k:%M +time2_format = +time1_font = Roboto Mono 10 +time1_timezone = +time2_timezone = +time2_font = Normal +clock_font_color = #f3f3ff 100 +clock_padding = 2 0 +clock_background_id = 4 +clock_tooltip = +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 10 +bat2_font = sans 0 +battery_font_color = #f3f3ff 100 +bat1_format = +bat2_format = +battery_padding = 1 0 +battery_background_id = 4 +battery_hide = 101 +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 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #777777 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Separator 3 +separator = new +separator_background_id = 0 +separator_color = #777777 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Button 1 +button = new +button_icon = arrow-left +button_text = +button_tooltip = Left Sidepanel (super + ctrl + Left) +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 = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = Left - main menu, Right - panel settings menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 0 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 32 + +#------------------------------------- +# Button 3 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = Logout... (super + x) +button_lclick_command = mb-jgtools mblogout 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 = 24 + +#------------------------------------- +# Button 4 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Right Sidepanel (super + ctrl + Right) +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 = 20 + +#------------------------------------- +# 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/.config/tint2/gruvbox.tint2rc b/lang/en/.config/tint2/gruvbox.tint2rc new file mode 100644 index 0000000..d7acb3f --- /dev/null +++ b/lang/en/.config/tint2/gruvbox.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf ab27 ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #151515 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #202020 100 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #151515 100 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:ET:FEEPSBECPP +panel_size = 1900 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #a89984 100 +task_active_font_color = #ddc7a1 100 +task_iconified_font_color = #928374 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #d4be98 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Today is %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +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 = + +#------------------------------------- +# Separator 1 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +execp_lclick_command = show_desktop +execp_rclick_command = jgdesktops ipc +execp_mclick_command = +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #d8a657 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #d8a657 100 +tooltip_font = Rubik 10 + diff --git a/lang/en/.config/tint2/mabox2-top.tint2rc b/lang/en/.config/tint2/mabox2-top.tint2rc new file mode 100644 index 0000000..4b38dff --- /dev/null +++ b/lang/en/.config/tint2/mabox2-top.tint2rc @@ -0,0 +1,384 @@ +#---- Generated by tint2conf 8d47 ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Egzekutor +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 = PPPPPPL:TESBCPP +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 1 +systray_background_id = 0 +systray_sort = ascending +systray_icon_size = 20 +systray_icon_asb = 100 0 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 = Papirus +launcher_icon_theme_override = 1 +startup_notifications = 1 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 %e day of %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = Monospace 9 +bat2_font = Cantarell 0 +battery_font_color = #ffffff 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = dots +separator_size = 4 +separator_padding = 0 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 1 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 1 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 16 + +#------------------------------------- +# Button 1 +button = new +button_icon = arrow-left +button_text = +button_tooltip = Left panel (ctrl+win+left) +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 = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 3 +button = new +button_icon = desktop +button_text = +button_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +button_lclick_command = show_desktop +button_rclick_command = jgdesktops ipc +button_mclick_command = +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 4 4 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Right panel (ctrl+win+right) +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/.config/tint2/mabox2001.tint2rc b/lang/en/.config/tint2/mabox2001.tint2rc new file mode 100644 index 0000000..3465ed6 --- /dev/null +++ b/lang/en/.config/tint2/mabox2001.tint2rc @@ -0,0 +1,321 @@ +#---- Generated by tint2conf 06fb ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPLTSBCPP +panel_size = 80% 34 +panel_margin = 4 4 +panel_padding = 1 1 4 +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.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 = 24 +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 = Papirus +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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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+win+left) +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 = LMB -> main menu, RMB -> panel settings +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = system-shutdown +button_text = +button_tooltip = Exit Dialog (win+x) +button_lclick_command = mb-jgtools mblogout 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 = 24 + +#------------------------------------- +# Button 4 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Right SidePanel (ctrl+win+right) +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.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/.config/tint2/mabox2001neon.tint2rc b/lang/en/.config/tint2/mabox2001neon.tint2rc new file mode 100644 index 0000000..6c4ec61 --- /dev/null +++ b/lang/en/.config/tint2/mabox2001neon.tint2rc @@ -0,0 +1,453 @@ +#---- Generated by tint2conf dd94 ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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: Button, Egzekutor, 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPPPPPLTSEPBECPP +panel_size = 80% 34 +panel_margin = 4 4 +panel_padding = 1 1 1 +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.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 = 2 2 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 = 24 +systray_icon_asb = 100 0 0 +systray_monitor = 1 +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 6 4 4 +launcher_background_id = 7 +launcher_icon_background_id = 0 +launcher_icon_size = 24 +launcher_icon_asb = 100 0 0 +launcher_icon_theme = BeautyLine +launcher_icon_theme_override = 1 +startup_notifications = 0 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 7 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 16 + +#------------------------------------- +# Executor 2 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left SidePanel - Places (ctrl+win+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 0 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = LMB -> main menu, RMB -> panel settings +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 4 0 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_icon = desktop +button_text = +button_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +button_lclick_command = show_desktop +button_rclick_command = skippy-xd-fix +button_mclick_command = jgdesktops ipc +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 16 + +#------------------------------------- +# Button 8 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 16 + +#------------------------------------- +# Button 9 +button = new +button_text =  +button_tooltip = Right SidePanel (ctrl+win+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 16 + +#------------------------------------- +# 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/.config/tint2/micro95_bottom.tint2rc b/lang/en/.config/tint2/micro95_bottom.tint2rc new file mode 100644 index 0000000..226be29 --- /dev/null +++ b/lang/en/.config/tint2/micro95_bottom.tint2rc @@ -0,0 +1,437 @@ +#---- Generated by tint2conf 82bc ---- +# 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 = PPPPPPLTFEPSBCPP +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 44 +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 +launcher_icon_theme_override = 1 +startup_notifications = 1 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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, %e day of %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #241f31 100 +execp_padding = 0 0 +execp_background_id = -1 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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 = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = desktop +button_text = +button_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +button_lclick_command = show_desktop +button_rclick_command = jgdesktops ipc +button_mclick_command = +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser 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 7 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #241f31 100 +button_padding = 0 0 +button_background_id = -1 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_icon = system-shutdown +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +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 9 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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/.config/tint2/micro95_top.tint2rc b/lang/en/.config/tint2/micro95_top.tint2rc new file mode 100644 index 0000000..01df604 --- /dev/null +++ b/lang/en/.config/tint2/micro95_top.tint2rc @@ -0,0 +1,437 @@ +#---- Generated by tint2conf 82bc ---- +# 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 = PPPPPPLTFEPSBCPP +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 = top 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 44 +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 +launcher_icon_theme_override = 1 +startup_notifications = 1 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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, %e day of %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #241f31 100 +execp_padding = 0 0 +execp_background_id = -1 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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 = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = desktop +button_text = +button_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +button_lclick_command = show_desktop +button_rclick_command = skippy-xd-fix +button_mclick_command = jgdesktops ipc +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser 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 7 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #241f31 100 +button_padding = 0 0 +button_background_id = -1 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +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 9 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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/.config/tint2/nordic.tint2rc b/lang/en/.config/tint2/nordic.tint2rc new file mode 100644 index 0000000..1b6003f --- /dev/null +++ b/lang/en/.config/tint2/nordic.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf b92b ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #1f232b 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #2b303c 100 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #1f232b 80 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:EET:FEPSBECPP +panel_size = 1900 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #81a1c1 100 +task_active_font_color = #a3be8c 100 +task_iconified_font_color = #4c566a 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #d8dee9 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Today is %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +execp_lclick_command = show_desktop +execp_rclick_command = jgdesktops ipc +execp_mclick_command = +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #8fbcbb 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #8fbcbb 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #ebcb8b 100 +tooltip_font = Rubik 10 + diff --git a/lang/es/.config/blob/ArcDark/MBcolors.colorrc b/lang/es/.config/blob/ArcDark/MBcolors.colorrc new file mode 100644 index 0000000..c8e7eee --- /dev/null +++ b/lang/es/.config/blob/ArcDark/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 0 +sep_height = 5 +sep_halign = center +menu_gradient_pos=none +color_menu_bg = #14161B 80 +color_menu_bg_to = #000000 90 +color_menu_border = #2d3036 100 +color_norm_bg = #2b303b 0 +color_norm_fg = #D3DAE3 100 +color_sel_bg = #3498db 100 +color_sel_fg = #ffffff 100 +color_sel_border = #3498db 100 +color_sep_fg = #2d3036 100 +color_title_bg = #2d3036 100 +color_title_fg = #D3DAE3 100 +color_title_border = #eff0f1 10 diff --git a/lang/es/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..2856a51 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#1f1f1f', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#8c8774', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..7ddf628 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..d982718 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 128, + minimum_width = 128, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[128x128]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..faff84c --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#8c8774', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..f88c46a --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..bb52c57 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#1f1f1f', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..d8ab75d --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#8c8774', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..388dcc8 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + cpu_avg_samples = 2, + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 8, + border_outer_margin = 7, + border_width = 1, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..5ab6fea --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 308, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..2f26f1b --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color2 = '#8c8774', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..8531f91 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..a30ee34 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..01a8cd3 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#8c8774', + color3 = '#2bb0a5', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 8, + border_outer_margin = 7, + border_width = 1, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..2148d51 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + color2 = '#8c8774', + color3 = '#2bb0a5', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 8, + border_outer_margin = 7, + border_width = 1, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..608813f --- /dev/null +++ b/lang/es/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#1f1f1f', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#2bb0a5', + color0 = '#827d6a', + color1 = '#108e71', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 8, + border_outer_margin = 7, +-- border width + border_width = 1, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/ArcDark/mvars.txt b/lang/es/.config/blob/ArcDark/mvars.txt new file mode 100644 index 0000000..89eb7c4 --- /dev/null +++ b/lang/es/.config/blob/ArcDark/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=false +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/ArcDark/wpicon.png b/lang/es/.config/blob/ArcDark/wpicon.png new file mode 100644 index 0000000..60e9620 Binary files /dev/null and b/lang/es/.config/blob/ArcDark/wpicon.png differ diff --git a/lang/es/.config/blob/ArcDark/wpicon_wide.png b/lang/es/.config/blob/ArcDark/wpicon_wide.png new file mode 100644 index 0000000..0b5531c Binary files /dev/null and b/lang/es/.config/blob/ArcDark/wpicon_wide.png differ diff --git a/lang/es/.config/blob/CyberPunk_Neon/MBcolors.colorrc b/lang/es/.config/blob/CyberPunk_Neon/MBcolors.colorrc new file mode 100644 index 0000000..30bff5c --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 0 +item_border = 0 +menu_gradient_pos=top +color_menu_bg = #091833 90 +color_menu_bg_to = #091833 95 +color_menu_border = #023748 100 +color_norm_bg = #2b303b 0 +color_norm_fg = #0ABDC6 100 +color_sel_bg = #711c91 100 +color_sel_fg = #091833 100 +color_sel_fg = #eeeeee 100 +color_sel_border = #711c91 100 +color_sep_fg = #0ABDC6 20 +color_title_bg = #000B1E 100 +color_title_fg = #0ABDC6 100 +color_title_border = #023748 60 + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..e067d55 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..2c8afa4 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..9c8810e --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..5181fec --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..2b75f33 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..0009cbf --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..324622a --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..56b2f8a --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..fb03aec --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..865e42b --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 308, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..4eca26e --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..9183787 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..9601719 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..45c24d7 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + color3 = '#6c98c8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..f1ac017 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + color3 = '#6c98c8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..419258b --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4d3764', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/CyberPunk_Neon/mvars.txt b/lang/es/.config/blob/CyberPunk_Neon/mvars.txt new file mode 100644 index 0000000..8128ba4 --- /dev/null +++ b/lang/es/.config/blob/CyberPunk_Neon/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#a5439e +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/CyberPunk_Neon/wpicon.png b/lang/es/.config/blob/CyberPunk_Neon/wpicon.png new file mode 100644 index 0000000..08e60aa Binary files /dev/null and b/lang/es/.config/blob/CyberPunk_Neon/wpicon.png differ diff --git a/lang/es/.config/blob/CyberPunk_Neon/wpicon_wide.png b/lang/es/.config/blob/CyberPunk_Neon/wpicon_wide.png new file mode 100644 index 0000000..2d3fc2d Binary files /dev/null and b/lang/es/.config/blob/CyberPunk_Neon/wpicon_wide.png differ diff --git a/lang/es/.config/blob/Dracula/MBcolors.colorrc b/lang/es/.config/blob/Dracula/MBcolors.colorrc new file mode 100644 index 0000000..59ebf7d --- /dev/null +++ b/lang/es/.config/blob/Dracula/MBcolors.colorrc @@ -0,0 +1,15 @@ +item_radius = 2 +item_border = 1 +color_menu_border = #BD93F9 100 +color_sep_fg = #BD93F9 20 +color_title_bg = #FF79C6 60 +color_title_border = #FF79C6 50 +color_title_fg = #282A36 100 +sep_halign = Center +color_menu_bg = #282A36 90 +color_menu_bg_to = #1E1F29 90 +color_norm_fg = #f8f8f2 100 +color_sel_bg = #BD93F9 10 +color_sel_border = #BD93F9 40 +color_sel_fg = #FF79C6 100 +menu_gradient_pos=bottom_right diff --git a/lang/es/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..387351a --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#282936', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..adfb64a --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/Dracula/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..d55c3fc --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..23f311d --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b5896d2 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#282936', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..5b8878a --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..090a387 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..1828fec --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 308, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..0d1e83f --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color2 = '#ebff87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..28be301 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..01b41e1 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..6d1bfc5 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + color3 = '#00f769', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..004cf05 --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + color2 = '#ebff87', + color3 = '#00f769', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 12, + border_outer_margin = 4, + border_width = 8, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..c4c604b --- /dev/null +++ b/lang/es/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#282936', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#e9e9f4', + color1 = '#ea51b2', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 12, + border_outer_margin = 4, +-- border width + border_width = 8, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/Dracula/mvars.txt b/lang/es/.config/blob/Dracula/mvars.txt new file mode 100644 index 0000000..5549140 --- /dev/null +++ b/lang/es/.config/blob/Dracula/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰕥 +ok_fgcolor=#f472d0 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/Dracula/wpicon.png b/lang/es/.config/blob/Dracula/wpicon.png new file mode 100644 index 0000000..c7b06cf Binary files /dev/null and b/lang/es/.config/blob/Dracula/wpicon.png differ diff --git a/lang/es/.config/blob/Dracula/wpicon_wide.png b/lang/es/.config/blob/Dracula/wpicon_wide.png new file mode 100644 index 0000000..139a8f3 Binary files /dev/null and b/lang/es/.config/blob/Dracula/wpicon_wide.png differ diff --git a/lang/es/.config/blob/Gruvbox-Mabox/MBcolors.colorrc b/lang/es/.config/blob/Gruvbox-Mabox/MBcolors.colorrc new file mode 100644 index 0000000..b66bb02 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/MBcolors.colorrc @@ -0,0 +1,17 @@ +# item_radius = 1 +#item_border = 1 +# sep_height = 5 +sep_halign = Center +color_menu_bg = #282828 100 +color_menu_bg_to = #1d2021 100 +color_menu_border = #3c3836 100 +# color_norm_bg = #000000 00 +color_norm_fg = #d4be98 100 +color_sel_bg = #32302f 100 +color_sel_fg = #ddc7a1 100 +color_sel_border = #1d2021 100 +color_sep_fg = #504945 100 +color_title_fg = #ebdbb2 100 +color_title_bg = #1d2021 100 +color_title_border = #3c3836 100 +menu_gradient_pos=top_right diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..b2e4af2 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..2d18714 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..f21b706 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-circle.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..0b03734 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..d57b0ae --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..54d126d --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#282828', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..9405602 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..3f8bf71 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..3050419 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..25f0f91 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color2 = '#FB4934', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..d87bddd --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..d393a94 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..425d2d6 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + color3 = '#d79921', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..1128208 --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#FB4934', + color3 = '#d79921', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..50a721a --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/Gruvbox-Mabox/mvars.txt b/lang/es/.config/blob/Gruvbox-Mabox/mvars.txt new file mode 100644 index 0000000..d06f3eb --- /dev/null +++ b/lang/es/.config/blob/Gruvbox-Mabox/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#e6c637 +logo_out_color=#121315 +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/Gruvbox-Mabox/wpicon.png b/lang/es/.config/blob/Gruvbox-Mabox/wpicon.png new file mode 100644 index 0000000..57a03f9 Binary files /dev/null and b/lang/es/.config/blob/Gruvbox-Mabox/wpicon.png differ diff --git a/lang/es/.config/blob/Gruvbox-Mabox/wpicon_wide.png b/lang/es/.config/blob/Gruvbox-Mabox/wpicon_wide.png new file mode 100644 index 0000000..f82d8ac Binary files /dev/null and b/lang/es/.config/blob/Gruvbox-Mabox/wpicon_wide.png differ diff --git a/lang/es/.config/blob/Istredd/MBcolors.colorrc b/lang/es/.config/blob/Istredd/MBcolors.colorrc new file mode 100644 index 0000000..ef13a3b --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 0 +sep_height = 5 +sep_halign = center +color_menu_bg = #d3d4bf 90 +color_menu_border = #e9eeea 90 +color_norm_bg = #d3d4bf 90 +color_norm_fg = #0c1d23 90 +color_sel_bg = #e8e8dd 100 +color_sel_fg = #060b0a 90 +color_sel_border = #c6b76b 90 +color_sep_fg = #a29d62 20 +color_title_bg = #cdc76d 90 +color_title_border = #c6b76b 90 +color_title_fg = #0c1d23 90 +menu_gradient_pos = top_right +color_menu_bg_to = #d2cda1 90 diff --git a/lang/es/.config/blob/Istredd/MBcolors/close.xbm b/lang/es/.config/blob/Istredd/MBcolors/close.xbm new file mode 100644 index 0000000..ab7ff80 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/close.xbm @@ -0,0 +1,4 @@ +#define close_width 8 +#define close_height 8 +static unsigned char close_bits[] = { + 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/close_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/close_hover.xbm new file mode 100644 index 0000000..de852f9 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/close_hover.xbm @@ -0,0 +1,5 @@ +#define close_hover_width 12 +#define close_hover_height 12 +static unsigned char close_hover_bits[] = { + 0x00, 0x00, 0x06, 0x06, 0x0e, 0x07, 0x9c, 0x03, 0x98, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x98, 0x01, 0x9c, 0x03, 0x0e, 0x07, 0x06, 0x06, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/close_pressed.xbm b/lang/es/.config/blob/Istredd/MBcolors/close_pressed.xbm new file mode 100644 index 0000000..371a6b4 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/close_pressed.xbm @@ -0,0 +1,5 @@ +#define close_pressed_width 12 +#define close_pressed_height 12 +static unsigned char close_pressed_bits[] = { + 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/desk.xbm b/lang/es/.config/blob/Istredd/MBcolors/desk.xbm new file mode 100644 index 0000000..abca780 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/desk.xbm @@ -0,0 +1,4 @@ +#define desk_toggled_width 8 +#define desk_toggled_height 8 +static unsigned char desk_toggled_bits[] = { + 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/desk_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/desk_hover.xbm new file mode 100644 index 0000000..b6059d4 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/desk_hover.xbm @@ -0,0 +1,5 @@ +#define desk_hover_width 12 +#define desk_hover_height 12 +static unsigned char desk_hover_bits[] = { + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/desk_pressed.xbm b/lang/es/.config/blob/Istredd/MBcolors/desk_pressed.xbm new file mode 100644 index 0000000..f057b9a --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/desk_pressed.xbm @@ -0,0 +1,5 @@ +#define desk_pressed_width 12 +#define desk_pressed_height 12 +static unsigned char desk_pressed_bits[] = { + 0x00, 0x00, 0x02, 0x04, 0x0c, 0x03, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x0c, 0x03, 0x02, 0x04, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/desk_toggled.xbm b/lang/es/.config/blob/Istredd/MBcolors/desk_toggled.xbm new file mode 100644 index 0000000..b4b5330 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/desk_toggled.xbm @@ -0,0 +1,4 @@ +#define desk_width 8 +#define desk_height 8 +static unsigned char desk_bits[] = { + 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm new file mode 100644 index 0000000..0dc2f60 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define desk_toggled_hover_width 12 +#define desk_toggled_hover_height 12 +static unsigned char desk_toggled_hover_bits[] = { + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x04, 0x9e, 0x04, 0x9e, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x9e, 0x07, 0x92, 0x04, 0x92, 0x04, 0x9e, 0x07, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm b/lang/es/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm new file mode 100644 index 0000000..876649c --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm @@ -0,0 +1,5 @@ +#define desk_toggled_pressed_width 12 +#define desk_toggled_pressed_height 12 +static unsigned char desk_toggled_pressed_bits[] = { + 0x00, 0x00, 0x02, 0x04, 0x0c, 0x03, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x0c, 0x03, 0x02, 0x04, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/iconify.xbm b/lang/es/.config/blob/Istredd/MBcolors/iconify.xbm new file mode 100644 index 0000000..9a9743f --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/iconify.xbm @@ -0,0 +1,4 @@ +#define iconify_width 8 +#define iconify_height 8 +static unsigned char iconify_bits[] = { + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/iconify_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/iconify_hover.xbm new file mode 100644 index 0000000..53b1ba6 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/iconify_hover.xbm @@ -0,0 +1,5 @@ +#define iconify_hover_width 12 +#define iconify_hover_height 12 +static unsigned char iconify_hover_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0xfc, 0x03, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/iconify_pressed.xbm b/lang/es/.config/blob/Istredd/MBcolors/iconify_pressed.xbm new file mode 100644 index 0000000..21267b6 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/iconify_pressed.xbm @@ -0,0 +1,5 @@ +#define iconify_pressed_width 12 +#define iconify_pressed_height 12 +static unsigned char iconify_pressed_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x01, 0xf8, 0x01, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/max.xbm b/lang/es/.config/blob/Istredd/MBcolors/max.xbm new file mode 100644 index 0000000..505e112 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/max.xbm @@ -0,0 +1,4 @@ +#define titlebutton_max_2_width 8 +#define titlebutton_max_2_height 8 +static unsigned char titlebutton_max_2_bits[] = { + 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/max_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/max_hover.xbm new file mode 100644 index 0000000..6ef5391 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/max_hover.xbm @@ -0,0 +1,5 @@ +#define max_hover_width 12 +#define max_hover_height 12 +static unsigned char max_hover_bits[] = { + 0xff, 0x0f, 0xff, 0x0f, 0xff, 0x0f, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, + 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0xff, 0x0f }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/max_toggled.xbm b/lang/es/.config/blob/Istredd/MBcolors/max_toggled.xbm new file mode 100644 index 0000000..505e112 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/max_toggled.xbm @@ -0,0 +1,4 @@ +#define titlebutton_max_2_width 8 +#define titlebutton_max_2_height 8 +static unsigned char titlebutton_max_2_bits[] = { + 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm new file mode 100644 index 0000000..e2c8cfa --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define max_toggled_hover_width 12 +#define max_toggled_hover_height 12 +static unsigned char max_toggled_hover_bits[] = { + 0x00, 0x09, 0x00, 0x05, 0x00, 0x03, 0x00, 0x0f, 0xff, 0x00, 0xff, 0x00, + 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0xff, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/shade.xbm b/lang/es/.config/blob/Istredd/MBcolors/shade.xbm new file mode 100644 index 0000000..fcacf42 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/shade.xbm @@ -0,0 +1,4 @@ +#define shade_width 8 +#define shade_height 8 +static unsigned char shade_bits[] = { + 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/shade_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/shade_hover.xbm new file mode 100644 index 0000000..eac4e87 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/shade_hover.xbm @@ -0,0 +1,5 @@ +#define shade_hover_width 12 +#define shade_hover_height 12 +static unsigned char shade_hover_bits[] = { + 0x00, 0x00, 0xfe, 0x07, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/shade_pressed.xbm b/lang/es/.config/blob/Istredd/MBcolors/shade_pressed.xbm new file mode 100644 index 0000000..4a39d82 --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/shade_pressed.xbm @@ -0,0 +1,5 @@ +#define shade_pressed_width 12 +#define shade_pressed_height 12 +static unsigned char shade_pressed_bits[] = { + 0x00, 0x00, 0xf8, 0x01, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/shade_toggled.xbm b/lang/es/.config/blob/Istredd/MBcolors/shade_toggled.xbm new file mode 100644 index 0000000..594201e --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/shade_toggled.xbm @@ -0,0 +1,4 @@ +#define shade_toggled_width 8 +#define shade_toggled_height 8 +static unsigned char shade_toggled_bits[] = { + 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm b/lang/es/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm new file mode 100644 index 0000000..686fb9c --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define shade_toggled_hover_width 12 +#define shade_toggled_hover_height 12 +static unsigned char shade_toggled_hover_bits[] = { + 0x00, 0x00, 0xfe, 0x07, 0xfe, 0x07, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, + 0x02, 0x04, 0x02, 0x04, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/es/.config/blob/Istredd/MBcolors/themerc b/lang/es/.config/blob/Istredd/MBcolors/themerc new file mode 100644 index 0000000..89781de --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/themerc @@ -0,0 +1,82 @@ +#AB #579c8e +#NL #292929 +#AF #ffffff +#NB #383838 +#AL #292929 +#NF #dadada +#G? True +#R? False +#B? True +#H? False + +border.width: 1 +padding.width: 4 +padding.height: 4 +window.client.padding.width: 0 +window.client.padding.height: 0 +window.handle.width: 4 + +window.active.label.text.font: shadow=y:shadowtint=70:shadowoffset=1 +window.inactive.label.text.font: shadow=y:shadowtint=20:shadowoffset=1 + +*.active.border.color: #292929 +*.inactive.border.color: #292929 + +window.*.grip.bg: parentrelative +window.*.title.bg: flat vertical gradient +window.*.label.bg: parentrelative +window.*.button.*.bg: parentrelative +window.*.handle.bg: flat vertical gradient +window.*.text.justify: center + +window.active.title.bg.color: #579c8e +window.active.title.bg.colorTo: #41756a +window.active.label.text.color: #ffffff +window.active.button.*.unpressed.image.color: #ffffff +window.active.button.*.disabled.image.color: #8fbdb3 +window.active.button.*.hover.image.color: #abcdc6 +window.active.button.*.pressed.image.color: #2b4e47 +window.active.handle.bg.color: #383838 +window.active.handle.bg.colorTo: #252525 + +window.inactive.title.bg.color: #383838 +window.inactive.title.bg.colorTo: #2a2a2a +window.inactive.label.text.color: #898989 +window.inactive.button.*.unpressed.image.color: #898989 +window.inactive.button.*.disabled.image.color: #6e6e6e +window.inactive.button.*.hover.image.color: #dadada +window.inactive.button.*.pressed.image.color: #1c1c1c +window.inactive.handle.bg.color: #383838 +window.inactive.handle.bg.colorTo: #252525 + +menu.title.bg: flat vertical gradient +menu.title.bg.color: #579c8e +menu.title.bg.colorTo: #41756a +menu.title.text.color: #ffffff +menu.items.bg: flat diagonal gradient +menu.items.bg.color: #383838 +menu.items.bg.colorTo: #2a2a2a +menu.items.text.color: #dadada +menu.items.disabled.text.color: #6e6e6e +menu.items.active.bg: flat vertical gradient +menu.items.active.bg.color: #579c8e +menu.items.active.bg.colorTo: #41756a +menu.items.active.text.color: #ffffff +menu.items.active.disabled.text.color: #8fbdb3 +menu.separator.color: #292929 +menu.separator.padding.width: 0 +menu.separator.width: 1 + +osd.bg: flat diagonal gradient +osd.bg.color: #383838 +osd.bg.colorTo: #2a2a2a +osd.unhilight.bg: flat diagonal gradient +osd.unhilight.bg.color: #383838 +osd.unhilight.bg.colorTo: #2a2a2a +osd.hilight.bg: flat diagonal gradient +osd.hilight.bg.color: #579c8e +osd.hilight.bg.colorTo: #41756a +window.active.grip.bg.color: #222222 +window.active.grip.bg.colorTo: #222222 +window.inactive.grip.bg.color: #222222 +window.inactive.grip.bg.colorTo: #222222 diff --git a/lang/es/.config/blob/Istredd/MBcolors/themerc.bak b/lang/es/.config/blob/Istredd/MBcolors/themerc.bak new file mode 100644 index 0000000..89781de --- /dev/null +++ b/lang/es/.config/blob/Istredd/MBcolors/themerc.bak @@ -0,0 +1,82 @@ +#AB #579c8e +#NL #292929 +#AF #ffffff +#NB #383838 +#AL #292929 +#NF #dadada +#G? True +#R? False +#B? True +#H? False + +border.width: 1 +padding.width: 4 +padding.height: 4 +window.client.padding.width: 0 +window.client.padding.height: 0 +window.handle.width: 4 + +window.active.label.text.font: shadow=y:shadowtint=70:shadowoffset=1 +window.inactive.label.text.font: shadow=y:shadowtint=20:shadowoffset=1 + +*.active.border.color: #292929 +*.inactive.border.color: #292929 + +window.*.grip.bg: parentrelative +window.*.title.bg: flat vertical gradient +window.*.label.bg: parentrelative +window.*.button.*.bg: parentrelative +window.*.handle.bg: flat vertical gradient +window.*.text.justify: center + +window.active.title.bg.color: #579c8e +window.active.title.bg.colorTo: #41756a +window.active.label.text.color: #ffffff +window.active.button.*.unpressed.image.color: #ffffff +window.active.button.*.disabled.image.color: #8fbdb3 +window.active.button.*.hover.image.color: #abcdc6 +window.active.button.*.pressed.image.color: #2b4e47 +window.active.handle.bg.color: #383838 +window.active.handle.bg.colorTo: #252525 + +window.inactive.title.bg.color: #383838 +window.inactive.title.bg.colorTo: #2a2a2a +window.inactive.label.text.color: #898989 +window.inactive.button.*.unpressed.image.color: #898989 +window.inactive.button.*.disabled.image.color: #6e6e6e +window.inactive.button.*.hover.image.color: #dadada +window.inactive.button.*.pressed.image.color: #1c1c1c +window.inactive.handle.bg.color: #383838 +window.inactive.handle.bg.colorTo: #252525 + +menu.title.bg: flat vertical gradient +menu.title.bg.color: #579c8e +menu.title.bg.colorTo: #41756a +menu.title.text.color: #ffffff +menu.items.bg: flat diagonal gradient +menu.items.bg.color: #383838 +menu.items.bg.colorTo: #2a2a2a +menu.items.text.color: #dadada +menu.items.disabled.text.color: #6e6e6e +menu.items.active.bg: flat vertical gradient +menu.items.active.bg.color: #579c8e +menu.items.active.bg.colorTo: #41756a +menu.items.active.text.color: #ffffff +menu.items.active.disabled.text.color: #8fbdb3 +menu.separator.color: #292929 +menu.separator.padding.width: 0 +menu.separator.width: 1 + +osd.bg: flat diagonal gradient +osd.bg.color: #383838 +osd.bg.colorTo: #2a2a2a +osd.unhilight.bg: flat diagonal gradient +osd.unhilight.bg.color: #383838 +osd.unhilight.bg.colorTo: #2a2a2a +osd.hilight.bg: flat diagonal gradient +osd.hilight.bg.color: #579c8e +osd.hilight.bg.colorTo: #41756a +window.active.grip.bg.color: #222222 +window.active.grip.bg.colorTo: #222222 +window.inactive.grip.bg.color: #222222 +window.inactive.grip.bg.colorTo: #222222 diff --git a/lang/es/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..15b196f --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..f5d8978 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/Istredd/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..f38e095 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..750793c --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..92cdffe --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..b4abf84 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..c53974f --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..5a5ef10 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color2 = '#e8cb2d', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..afa9909 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..ce1bf28 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..949bcc3 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..74f35ee --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..d33ee36 --- /dev/null +++ b/lang/es/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/Istredd/mvars.txt b/lang/es/.config/blob/Istredd/mvars.txt new file mode 100644 index 0000000..ca62ce0 --- /dev/null +++ b/lang/es/.config/blob/Istredd/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/Istredd/wpicon.png b/lang/es/.config/blob/Istredd/wpicon.png new file mode 100644 index 0000000..f60c575 Binary files /dev/null and b/lang/es/.config/blob/Istredd/wpicon.png differ diff --git a/lang/es/.config/blob/Istredd/wpicon_wide.png b/lang/es/.config/blob/Istredd/wpicon_wide.png new file mode 100644 index 0000000..1e97ee7 Binary files /dev/null and b/lang/es/.config/blob/Istredd/wpicon_wide.png differ diff --git a/lang/es/.config/blob/Mabox-superdesk/MBcolors.colorrc b/lang/es/.config/blob/Mabox-superdesk/MBcolors.colorrc new file mode 100644 index 0000000..07110b9 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 1 +sep_height = 2 +sep_halign = Right +menu_gradient_pos=top_right +color_menu_bg = #2c2c2c 90 +color_menu_bg_to = #111111 90 +color_menu_border = #2c2c2c 60 +color_norm_bg = #2b303b 0 +color_norm_fg = #aaaaaa 100 +color_sel_bg = #169f6f 30 +color_sel_fg = #ffffff 100 +color_sel_border = #169f6f 40 +color_sep_fg = #2A3833 100 +color_title_bg = #264D3F 100 +color_title_fg = #e9e9e9 100 +color_title_border = #169f6f 40 diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..a730c55 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..635951f --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..9a3c9bc --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..72bc66f --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..fe7eec2 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..c9185f6 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..2fc1273 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..0b3e100 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color2 = '#e8cb2d', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..cee06f6 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..b3de442 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..1a8d691 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..0ceb0f3 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..ccb540f --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/Mabox-superdesk/mvars.txt b/lang/es/.config/blob/Mabox-superdesk/mvars.txt new file mode 100644 index 0000000..13377d3 --- /dev/null +++ b/lang/es/.config/blob/Mabox-superdesk/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/Mabox-superdesk/wpicon.png b/lang/es/.config/blob/Mabox-superdesk/wpicon.png new file mode 100644 index 0000000..7d8adde Binary files /dev/null and b/lang/es/.config/blob/Mabox-superdesk/wpicon.png differ diff --git a/lang/es/.config/blob/Mabox-superdesk/wpicon_wide.png b/lang/es/.config/blob/Mabox-superdesk/wpicon_wide.png new file mode 100644 index 0000000..a6c8685 Binary files /dev/null and b/lang/es/.config/blob/Mabox-superdesk/wpicon_wide.png differ diff --git a/lang/es/.config/blob/Nordic/MBcolors.colorrc b/lang/es/.config/blob/Nordic/MBcolors.colorrc new file mode 100644 index 0000000..01c5200 --- /dev/null +++ b/lang/es/.config/blob/Nordic/MBcolors.colorrc @@ -0,0 +1,15 @@ +item_radius = 2 +item_border = 0 +color_menu_border = #4C566A 100 +color_sep_fg = #4C566A 20 +color_title_bg = #3B4252 100 +color_title_border = #2f343f 100 +color_title_fg = #ffffff 100 +sep_halign = center +color_menu_bg = #2f343f 100 +color_menu_bg_to = #2f343f 100 +color_norm_fg = #a8adb5 100 +color_sel_bg = #3B4252 100 +color_sel_border = #A3BE8C 20 +color_sel_fg = #A3BE8C 100 +menu_gradient_pos=top_right diff --git a/lang/es/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..597668b --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..2908cb3 --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..5181fec --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/blob/Nordic/conky/Network_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..cf5884a --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..37a62ae --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..95bf11e --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#2E3440', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..72802ae --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..45f8cbc --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..457b3ff --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..db6a08f --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..d087856 --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..7cf4861 --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..08071ee --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + color3 = '#88C0D0', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..222e386 --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + color3 = '#88C0D0', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..2ec57b9 --- /dev/null +++ b/lang/es/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/blob/Nordic/mvars.txt b/lang/es/.config/blob/Nordic/mvars.txt new file mode 100644 index 0000000..ca62ce0 --- /dev/null +++ b/lang/es/.config/blob/Nordic/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/es/.config/blob/Nordic/wpicon.png b/lang/es/.config/blob/Nordic/wpicon.png new file mode 100644 index 0000000..2b7dc31 Binary files /dev/null and b/lang/es/.config/blob/Nordic/wpicon.png differ diff --git a/lang/es/.config/blob/Nordic/wpicon_wide.png b/lang/es/.config/blob/Nordic/wpicon_wide.png new file mode 100644 index 0000000..455fcb1 Binary files /dev/null and b/lang/es/.config/blob/Nordic/wpicon_wide.png differ diff --git a/lang/es/.config/conky/Better_Clock_mbcolor.conkyrc b/lang/es/.config/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/es/.config/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/es/.config/conky/CPU_mbcolor.conkyrc b/lang/es/.config/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..15b196f --- /dev/null +++ b/lang/es/.config/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/es/.config/conky/Info_Bar_mbcolor.conkyrc b/lang/es/.config/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..f5d8978 --- /dev/null +++ b/lang/es/.config/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/es/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/es/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/es/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/es/.config/conky/Network_mbcolor.conkyrc b/lang/es/.config/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..f38e095 --- /dev/null +++ b/lang/es/.config/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/es/.config/conky/PCmanFM_mbcolor.conkyrc b/lang/es/.config/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..750793c --- /dev/null +++ b/lang/es/.config/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - file manager ${alignr}${color0}super+f +${color1}VIEW ${color0}${hr 1}${voffset -2} +${color0}Icon View ${alignr}${color1}ctrl+1 +${color0}Compact View ${alignr}${color1}ctrl+2 +${color0}Thumbnail View ${alignr}${color1}ctrl+3 +${color0}Detailed List View ${alignr}${color1}ctrl+4 +${color0}Show Hidden ${alignr}${color1}ctrl+H +${color1}GO ${color0}${hr 1} +${voffset -2}${color0}Home Dir${alignr}${color1}alt+Home +${color0}Parent Dir ${alignr}${color1}alt+Up +${color0}Previous Dir ${alignr}${color1}alt+Left +${color0}Next Dir ${alignr}${color1}alt+Right +${color0}Go to Location ${alignr}${color1}ctrl+L +${color0}SSH/FTP connect... ${alignr}${color1}alt+G C +${color1}WINDOW ${color0}${hr 1} +${voffset -2}${color0}Refresh ${alignr}${color1}F5 +${color0}Dual Pane Mode ${alignr}${color1}F3 +${color0}Status Bar${alignr}${color1}ctrl+B +${color0}Side Pane ${alignr}${color1}F9 +${color0}---> Places${alignr}${color1}ctrl+6 +${color0}---> Directory Tree ${alignr}${color1}ctrl+7 +${color1}SIZE ${color0}${hr 1}${voffset -2} +${color0}Zoom In${alignr}${alignr}${color1}ctrl++ +${color0}Zoon Out ${alignr}${color1}ctrl+- +${color0}Normal Size ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/es/.config/conky/Polaroid_mbcolor.conkyrc b/lang/es/.config/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/es/.config/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/es/.config/conky/RAM_mbcolor.conkyrc b/lang/es/.config/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..92cdffe --- /dev/null +++ b/lang/es/.config/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/es/.config/conky/mabox_info_mbcolor.conkyrc b/lang/es/.config/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..b4abf84 --- /dev/null +++ b/lang/es/.config/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} diff --git a/lang/es/.config/conky/mabox_tools_mbcolor.conkyrc b/lang/es/.config/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..c53974f --- /dev/null +++ b/lang/es/.config/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENUS/PANELES LATERALES${color0} ${hr 1}${voffset -2} +${color0}Menu principal ${alignr}${color1}super / super+barra de espacio +${color0}Ajustes de menu principal ${alignr} ${color1}super+s +${color0}Lateral izquierdo ${alignr} ${color1}ctrl+super+flecha izquierda +${color0}Lateral derecho ${alignr} ${color1}ctrl+super+flecha derecha +${color0}Lugares ${alignr} ${color1}super+. +${color1}AJUSTES de MENUS ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Paneles laterales ${alignr}${color1}super+alt+m +${color0}Fondo de pantalla ${alignr}${color1}super+alt+w +${color0}Bloqueo de pantalla ${alignr}${color1}super+alt+l +${color1}HERRAMIENTAS de Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta de Comandos ${alignr}${color1}super+F1 +${color0}Colorizador ${alignr}${color1}super+alt+o +${color0}Menu de Colores ${alignr}${color1}super+alt+c +${color0}Espanso - expansor de texto ${alignr}${color1}super+alt+e +${color0}Ventana de salida ${alignr}${color1}super+x +${color0}Capturador de pantalla${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/es/.config/conky/menuscripts/Mabox_logo_SVG.csv b/lang/es/.config/conky/menuscripts/Mabox_logo_SVG.csv new file mode 100644 index 0000000..5630f8f --- /dev/null +++ b/lang/es/.config/conky/menuscripts/Mabox_logo_SVG.csv @@ -0,0 +1,33 @@ + Website,xdg-open https://maboxlinux.org + Community forum,xdg-open https://forum.maboxlinux.org + Manual,xdg-open https://manual.maboxlinux.org +^sep() + More Links,^checkout(more) +^sep(Mabox tools) +Mabox Control Center,mcc +Welcome Screen,mwelcome +^sep(Menus) +Main menu ,mb-jgtools main +Mabox Config Menu  + s ,mb-jgtools settings +^sep() +Left Sidepanel C +  + Left ,mb-jgtools places +Right Sidepanel C +  + Right ,mb-jgtools right +^sep() +Places Menu  + . ,mb-places -s +Logout Menu  + x ,mb-jgtools mblogout +ScreenShot/Recorder  + PrtScr ,mb-jgtools screenshot +^sep(Other) +Conky Manager,colorizer-conky -s +^tag(more) +^sep(More Links) + Repo,xdg-open https://repo.maboxlinux.org + Developer Blog,xdg-open https://blog.maboxlinux.org +^sep() + Donate,xdg-open https://ko-fi.com/maboxlinux + Mabox on Distrowatch,xdg-open https://distrowatch.com/table.php?distribution=mabox +^sep(Social media) + Reddit,xdg-open https://old.reddit.com/r/MaboxLinux/ + Youtube,xdg-open https://www.youtube.com/c/MaboxLinux + Odysee,xdg-open https://odysee.com/@mabox-linux:8 + Facebook,xdg-open https://facebook.com/maboxlinux/ + Twitter,xdg-open https://twitter.com/MaboxLinux/ diff --git a/lang/es/.config/conky/menuscripts/sysinfo.csv b/lang/es/.config/conky/menuscripts/sysinfo.csv new file mode 100644 index 0000000..1283fa0 --- /dev/null +++ b/lang/es/.config/conky/menuscripts/sysinfo.csv @@ -0,0 +1,11 @@ +Actualizar el sistema(Tienda),pamac-manager --updates,system-upgrade +Actualizar en la terminal (cli),mb-cli update,openterm +Tienda de software,pamac-manager,pamac +Actualizar repositorios,^checkout(mirrory),download + +^tag(mirrory) +Repositorios rápidos pacman-mirrors -f5,mb-cli mirrors +Todos los repositorios pacman-mirrors -i -c all,mb-cli mirrors_all +Repositorios locales pacman-mirrors -i --geoip,mb-cli mirrors_geo +^sep() + diff --git a/lang/es/.config/conky/mount_points_mbcolor.conkyrc b/lang/es/.config/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..5a5ef10 --- /dev/null +++ b/lang/es/.config/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 240, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color2 = '#e8cb2d', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; + + diff --git a/lang/es/.config/conky/quoter_mbcolor.conkyrc b/lang/es/.config/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..afa9909 --- /dev/null +++ b/lang/es/.config/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/es/.config/conky/shortcuts_mbcolor.conkyrc b/lang/es/.config/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..ce1bf28 --- /dev/null +++ b/lang/es/.config/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}EJECUTAR${alignr}${color0}super = tecla windows${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}terminal de quake ${alignr}${color1}ctrl+~,F12 +${color0}gestor de archivos ${alignr}${color1}super+f +${color0}navegador www ${alignr}${color1}super+w +${color0}editor de texto ${alignr}${color1}super+e +${color0}buscador de archivos ${alignr}${color1}super+/ +${color0}calculadora ${alignr}${color1}super+g +${color0}radios en internet ${alignr}${color1}super+r +${color0}volumen de audio ${alignr}${color1}super+v +${color0}activar Picom ${alignr}${color1}super+p +${color0}activar Conky ${alignr}${color1}super+c +${color0}bloquear pantalla ${alignr}${color1}super+l +${color0}salir ${alignr}${color1}super+x +${color1}VENTANAS ${color0} ${hr 1}${voffset -2} +${color0}cerrar ${alignr} ${color1}alt+F4 +${color0}iconificar ${alignr} ${color1}alt+F5 +${color0}maximizar ${alignr} ${color1}alt+F6 +${color0}expose ${alignr} ${color1}super+~ +${color0}mostrar el escritorio ${alignr} ${color1}super+d +${color0}des/decorar barra ${alignr} ${color1}super+b +${color0}activar pantalla completa ${alignr} ${color1}F11 +${color1}posicionar ventanas: +${color0} - mitad de pantalla ${alignr} ${color1}super+flechas +${color0} - 1/4 de pantalla ${alignr} ${color1}super+teclado numerico[1..9] +${color1}ESCRITORIOS ${color0} ${hr 1}${voffset -2} +${color0}moverse entre escritorios ${alignr} ${color1}super+numeros[1..4] +]]; + + diff --git a/lang/es/.config/conky/sysinfo_graph_mbcolor.conkyrc b/lang/es/.config/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..949bcc3 --- /dev/null +++ b/lang/es/.config/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/conky/sysinfo_mbcolor.conkyrc b/lang/es/.config/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..1d9fea3 --- /dev/null +++ b/lang/es/.config/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} disk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} memory ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}kernel ${color1}${kernel} +${alignr}${color0}${alignr}arch ${color1}${machine} +${alignr}${color0}${alignr}filesystem ${color1}${fs_type}${voffset 10} +#${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} installed pkgs: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} branch: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/es/.config/conky/tiling_terminal_mbcolor.conkyrc b/lang/es/.config/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..d33ee36 --- /dev/null +++ b/lang/es/.config/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}TRABAJANDO TILING CON VENTANAS +${color1}EJECUTAR ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal (mostrar/esconder) ${alignr}${color1}ctrl+~,F12 +${color1}DIVIDIR ${color0}${hr 1} +${voffset -2}${color0}horizontalmente ${alignr}${color1}ctrl+shift+o +${color0}verticalmente ${alignr}${color1}ctrl+shift+e +${color1}ACCIONES UTILES ${color0}${hr 1} +${voffset -2}${color0}cambiar el centro${alignr}${color1}alt+flechas +${color0}redimensionar terminal activo ${alignr}${color1}ctrl+shift+flechas +${color0}enfocar la terminal activa ${alignr}${color1}ctrl+shift+x +${color0}pantalla completa ${alignr}${color1}super+enter,F11 +${color0}cerrar la terminal ${alignr}${color1}ctrl+shift+w +${color1}TAMAÑO FUENTE ${color0}${hr 1}${voffset -2} +${color0}aumentar ${alignr}${alignr}${color1}ctrl++ +${color0}disminuir ${alignr}${color1}ctrl+- +${color0}reestablecer ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/es/.config/jgmenu/append.csv b/lang/es/.config/jgmenu/append.csv new file mode 100644 index 0000000..a160950 --- /dev/null +++ b/lang/es/.config/jgmenu/append.csv @@ -0,0 +1,23 @@ +^sep() +#Atajos del teclado, ^pipe(jgkeys-pipe),key_bindings +Atajos del teclado, mbhelper -s,key_bindings +^sep() +Capturar Pantalla,mb-jgtools screenshot,emblem-photos + +^sep() +Bloquear pantalla,mbscreenlocker,system-lock-screen + +^sep() +Salir...,mb-jgtools mblogout,system-shutdown + +^tag(settings) +. ~/.config/mabox/settings.csv + +^sep(Ayuda) +Mabox User Guide (online),^checkout(userguide),distributor-logo-mabox +Mabox Forum,exo-open --launch WebBrowser https://forum.maboxlinux.org/,distributor-logo-mabox + +^tag(userguide) +. /usr/share/mb-jgtools/userguide.csv + +. ~/.config/mabox/settings_tags.csv diff --git a/lang/es/.config/jgmenu/prepend.csv b/lang/es/.config/jgmenu/prepend.csv new file mode 100644 index 0000000..cd79822 --- /dev/null +++ b/lang/es/.config/jgmenu/prepend.csv @@ -0,0 +1,4 @@ +@text,,10,6,150,20,0,left,top,auto,#000000, +@search,,24,6,150,20,2,left,top,auto,#000000 0,Buscar +^sep() +. ~/.config/mabox/favorites.csv diff --git a/lang/es/.config/jgmenu/sub-append.csv b/lang/es/.config/jgmenu/sub-append.csv new file mode 100644 index 0000000..a160950 --- /dev/null +++ b/lang/es/.config/jgmenu/sub-append.csv @@ -0,0 +1,23 @@ +^sep() +#Atajos del teclado, ^pipe(jgkeys-pipe),key_bindings +Atajos del teclado, mbhelper -s,key_bindings +^sep() +Capturar Pantalla,mb-jgtools screenshot,emblem-photos + +^sep() +Bloquear pantalla,mbscreenlocker,system-lock-screen + +^sep() +Salir...,mb-jgtools mblogout,system-shutdown + +^tag(settings) +. ~/.config/mabox/settings.csv + +^sep(Ayuda) +Mabox User Guide (online),^checkout(userguide),distributor-logo-mabox +Mabox Forum,exo-open --launch WebBrowser https://forum.maboxlinux.org/,distributor-logo-mabox + +^tag(userguide) +. /usr/share/mb-jgtools/userguide.csv + +. ~/.config/mabox/settings_tags.csv diff --git a/lang/es/.config/mabox/exit.csv b/lang/es/.config/mabox/exit.csv new file mode 100644 index 0000000..2d16177 --- /dev/null +++ b/lang/es/.config/mabox/exit.csv @@ -0,0 +1,11 @@ +## Comment out with # if you want to hide same lines +^sep(Salir...) +Cerrar sesión,openbox --exit,system-log-out +#Suspender,systemctl suspend,system-suspend +#Hibernar,systemctl hibernate,system-hibernate +Reiniciar,systemctl reboot,system-reboot +Bloquear pantalla,mbscreenlocker,system-lock-screen +Apagar sistema,systemctl poweroff,system-shutdown +^sep() +Configurar opciones,xdg-open $HOME/.config/mabox/exit.csv,geany + diff --git a/lang/es/.config/mabox/favorites.csv b/lang/es/.config/mabox/favorites.csv new file mode 100644 index 0000000..32b2c37 --- /dev/null +++ b/lang/es/.config/mabox/favorites.csv @@ -0,0 +1,9 @@ +^sep(Favoritos) +Terminal,exo-open --launch TerminalEmulator,utilities-terminal +Navegador Internet,exo-open --launch WebBrowser,firefox +Gestor de archivos,exo-open --launch FileManager,system-file-manager +Agregar/Quitar software,pamac-manager,package-manager-icon +^sep() +Ajustes,^checkout(settings),applications-utilities +^sep(Aplicaciones) +#^sep() diff --git a/lang/es/.config/mabox/jgtype.csv b/lang/es/.config/mabox/jgtype.csv new file mode 100644 index 0000000..495b10a --- /dev/null +++ b/lang/es/.config/mabox/jgtype.csv @@ -0,0 +1,23 @@ +^sep(jgtype - type command helper) +Updates,^checkout(updates) +Mirrors and keys,^checkout(mirrors) +^sep() +Configure,xdg-open ~/.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/es/.config/mabox/places-append.csv b/lang/es/.config/mabox/places-append.csv new file mode 100644 index 0000000..c96c0e7 --- /dev/null +++ b/lang/es/.config/mabox/places-append.csv @@ -0,0 +1,29 @@ +### Your own commands in left sidepanel (ctrl + win + left) - BOTTOM +# +# Syntax +# Commands: +# Label,command,icon (optional) +# +# ^sep() # separator - line +# ^sep(NAME) # separator +# +# Comment out line to disable +########################## +^sep(Agrega tus programas aquí) + Editar,xdg-open ~/.config/mabox/places-append.csv +^sep() + FSearch - Buscar archivos  + / ,fsearch + PyRadio - Radios de Internet  + r ,terminator --icon=/usr/share/icons/pyradio.png --geometry=564x440-20-20 -x pyradio -lt + btop - monitor de recursos  + h ,^term(btop) + System Info (inxi),terminator -T 'inxi system info (Q to close)' -x bash -c "inxi -Fazy -c2 | less -R" + Pronóstico del tiempo,terminator -T "Pronóstico del tiempo" --geometry=1030x740 -e "curl wttr.in ; read" + +#Terminator (advanced demo),terminator -m -j ~/.config/terminator/2-3-grid.json +^sep() +#Logout Dialog +^sep() + ⏻ Salir...  + x ,mb-jgtools mblogout,system-shutdown +^sep() + +# or all logout options +#. ~/.config/mabox/exit.csv diff --git a/lang/es/.config/mabox/places-prepend.csv b/lang/es/.config/mabox/places-prepend.csv new file mode 100644 index 0000000..620b6cc --- /dev/null +++ b/lang/es/.config/mabox/places-prepend.csv @@ -0,0 +1,21 @@ +### Your own commands in left sidepanel (ctrl + TAB) - TOP +# +# Syntax +# Commands: +# Label,command,icon (optional) +# +# ^sep() # separator - line +# ^sep(NAME) # separator +# +# Comment out line to disable +########################## + +#^sep(My own commands) +#FSearch,fsearch + +# Examples (uncomment to enable) + +#^sep(Graphics) +#The Gimp,gimp +#Inkscape,inkscape +#Blender 3D,blender diff --git a/lang/es/.config/mabox/right-append.csv b/lang/es/.config/mabox/right-append.csv new file mode 100644 index 0000000..97b2b5f --- /dev/null +++ b/lang/es/.config/mabox/right-append.csv @@ -0,0 +1,6 @@ +# Here you can customize right sidepanel +# Format: +# Label,command,icon +# Example: +^sep(Comandos de configuración) +Configurar...,xdg-open $HOME/.config/mabox/right-append.csv,add diff --git a/lang/es/.config/mabox/right-prepend.csv b/lang/es/.config/mabox/right-prepend.csv new file mode 100644 index 0000000..7693a4f --- /dev/null +++ b/lang/es/.config/mabox/right-prepend.csv @@ -0,0 +1,3 @@ +# Here you can customize right sidepanel +# Format: +# Label,command,icon diff --git a/lang/es/.config/mabox/settings.csv b/lang/es/.config/mabox/settings.csv new file mode 100644 index 0000000..6d758a4 --- /dev/null +++ b/lang/es/.config/mabox/settings.csv @@ -0,0 +1,33 @@ +^sep(Configuración) +Centro de Control Mabox,mcc,distributor-logo-mabox +^sep(Paneles Tint2) +Add/remove launchers...,jgtint2launcher,tint2 +Paneles Tint2,^pipe(jgtint2-pipe),tint2conf +^sep(Temas de Mabox) +Gestor de Temas,mb-obthemes,preferences-desktop-theme +^sep(Escritorio) +Fondos de pantalla,jgwallpaperchanger -s,nitrogen +Configurar fuentes,colorizer-fonts -s,fonts +Colorizer,colorizer -s,colorizer +Apariencia,lxappearance,preferences-desktop-theme +Reload GTK,reload-gtk,reload +^sep() +Menu / Paneles laterales,^pipe(jgmenusettings-pipe),menu-editor +Recuadros Conky,colorizer-conky -s,desktop-effects +Compositor gráfico,jgpicom-pipe -s,compton +Notificaciones,xfce4-notifyd-config,xfce4-notifyd +^sep() +Resolución de pantalla,arandr,xfce4-display +Resolución de pantalla (LXRandR),lxrandr,xfce4-display +^sep(Otros ajustes) +Aplicaciones preferidas,exo-preferred-applications,preferences-desktop-default-applications +Ajustes de energía,xfce4-power-manager-settings,mate-power-manager +Gestor Inicio de sesión,lightdm-gtk-greeter-settings-pkexec,lightdm-gtk-greeter-settings +Mouse e teclado,lxinput,keyboard +^sep(Openbox) +OBconf,obconf-qt,openbox +Reinicio,^checkout(autostart),geany +RC - ajustes de archivo,xdg-open ~/.config/openbox/rc.xml,geany +Reconfigurar Openbox,openbox --reconfigure,openbox +^sep() +Editar Configuración Menu,xdg-open ~/.config/mabox/settings.csv,geany diff --git a/lang/es/.config/mabox/settings_tags.csv b/lang/es/.config/mabox/settings_tags.csv new file mode 100644 index 0000000..3322a08 --- /dev/null +++ b/lang/es/.config/mabox/settings_tags.csv @@ -0,0 +1,4 @@ +^tag(autostart) +^sep(Reinicio) +Elegir apps/servicios del editor gráfico,yautostart,gtk-execute +Editar el archivo de reinicio (avanzado),xdg-open ~/.config/openbox/autostart,geany diff --git a/lang/es/.config/tint2/Istredd.tint2rc b/lang/es/.config/tint2/Istredd.tint2rc new file mode 100644 index 0000000..3afaa84 --- /dev/null +++ b/lang/es/.config/tint2/Istredd.tint2rc @@ -0,0 +1,477 @@ +#---- Generated by tint2conf 9d1f ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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: Button, Egzekutor, 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPEPPPLTSEEPBCPP +panel_size = 95% 32 +panel_margin = 2 2 +panel_padding = 0 1 1 +panel_background_id = 1 +wm_menu = 1 +panel_dock = 0 +panel_pivot_struts = 0 +panel_position = top center horizontal +panel_layer = bottom +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 = 1 +urgent_nb_of_blink = 8 +task_maximum_size = 100 100 +task_padding = 4 4 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 = 2 2 2 +systray_background_id = 7 +systray_sort = ascending +systray_icon_size = 0 +systray_icon_asb = 100 0 0 +systray_monitor = 1 +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 6 2 2 +launcher_background_id = 7 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme = Papirus +launcher_icon_theme_override = 1 +startup_notifications = 0 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %H:%M +time2_format = +time1_font = sans 14 +time1_timezone = +time2_timezone = +time2_font = sans 6 +clock_font_color = #ffffff 100 +clock_padding = 8 0 +clock_background_id = 7 +clock_tooltip = Hoy es %A, %e de %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 4 0 +battery_background_id = 7 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_name = mb-t2wall +execp_command = jgwallpaperchanger icon +execp_interval = 60 +execp_has_icon = 1 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 0 +execp_monitor = all +execp_tooltip = L: Random Wallpaper R: Wallpaper Menu +execp_lclick_command = jgwallpaperchanger lclick +execp_rclick_command = jgwallpaperchanger ipc +execp_mclick_command = +execp_uwheel_command = jgwallpaperchanger wheelup +execp_dwheel_command = jgwallpaperchanger wheeldown +execp_font = Symbols Nerd Font 16 +execp_font_color = #DDDDDD 100 +execp_padding = 1 1 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 30 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 4 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Silenciar/reactivar silencio, MW: Volumen, R: Menú de radio +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 16 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 7 +execp_centered = 1 + +#------------------------------------- +# Executor 3 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu ipc +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #DDDDDD 100 +execp_padding = 1 1 +execp_background_id = 7 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Panel lateral izquierdo (ctrl+win+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 0 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = LMB -> menú principal, RMB -> configuración del panel +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +## Button 3 "SHOW DESKTOP" +## To enable uncomment section below and add "P" to panel_items directive +#button = new +#button_icon = desktop +#button_text = +#button_tooltip = L: mostrar escritorio, R: lista de ventanas, M: exponer ventanas +#button_lclick_command = show_desktop +#button_rclick_command = jgdesktops ipc +#button_mclick_command = skippy-xd --expose +#button_uwheel_command = ~/.config/tint2/scripts/desktop next +#button_dwheel_command = ~/.config/tint2/scripts/desktop prev +#button_font = Symbols Nerd Font 14 +#button_font_color = #deddda 100 +#button_padding = 2 2 +#button_background_id = 7 +#button_centered = 1 +#button_max_icon_size = 0 + + +#------------------------------------- +# Button 5 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: Administrador de archivos (super + f), R: Menú de lugares (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (F12) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Navegador web (super+w), R: Más opciones +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = L: flameshot R: captura de pantalla (super+PrtScr) +button_lclick_command = flameshot gui +button_rclick_command = mb-jgtools screenshot ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 9 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 10 +button = new +button_text =  +button_tooltip = Panel lateral derecho (ctrl+win+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +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/es/.config/tint2/dracula.tint2rc b/lang/es/.config/tint2/dracula.tint2rc new file mode 100644 index 0000000..5217a9a --- /dev/null +++ b/lang/es/.config/tint2/dracula.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf dc5e ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #1e1f29 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #282a36 60 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #44475a 100 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:ET:FEEPSBECPP +panel_size = 90% 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #a89984 100 +task_active_font_color = #ddc7a1 100 +task_iconified_font_color = #928374 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #ff79c6 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Today is %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = +bat2_format = +battery_padding = 2 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +execp_lclick_command = show_desktop +execp_rclick_command = skippy-xd-fix +execp_mclick_command = jgdesktops ipc +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #bd93f9 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #f1fa8c 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = mb-jgtools settings ipc +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #bd93f9 100 +tooltip_font = Rubik 10 + diff --git a/lang/es/.config/tint2/gradient.tint2rc b/lang/es/.config/tint2/gradient.tint2rc new file mode 100644 index 0000000..17a5374 --- /dev/null +++ b/lang/es/.config/tint2/gradient.tint2rc @@ -0,0 +1,388 @@ +#---- Generated by tint2conf 6e9d ---- +# 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 = vertical +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: Inactive desktop name +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: Active desktop name, Active task +rounded = 2 +border_width = 1 +border_sides = TBLR +border_content_tint_weight = 10 +background_content_tint_weight = 0 +background_color = #292929 100 +border_color = #33d17a 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 taskbar, Battery, Clock, Inactive taskbar, Panel, Systray +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: Default task +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 = PPLT:S:B:CPP +panel_size = 100% 36 +panel_margin = 0 0 +panel_padding = 2 1 2 +panel_background_id = 4 +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.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 0 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 = 12 4 +taskbar_name_background_id = 2 +taskbar_name_active_background_id = 3 +taskbar_name_font = Ubuntu 10 +taskbar_name_font_color = #c0bfbc 100 +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 = 0 +urgent_nb_of_blink = 10 +task_maximum_size = 160 20 +task_padding = 4 4 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 = 7 +task_active_background_id = 3 +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 0 +systray_background_id = 4 +systray_sort = ascending +systray_icon_size = 28 +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_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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %a %e %b %k:%M +time2_format = +time1_font = Roboto Mono 10 +time1_timezone = +time2_timezone = +time2_font = Normal +clock_font_color = #f3f3ff 100 +clock_padding = 2 0 +clock_background_id = 4 +clock_tooltip = +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 10 +bat2_font = sans 0 +battery_font_color = #f3f3ff 100 +bat1_format = +bat2_format = +battery_padding = 1 0 +battery_background_id = 4 +battery_hide = 101 +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 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #777777 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Separator 3 +separator = new +separator_background_id = 0 +separator_color = #777777 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Button 1 +button = new +button_icon = arrow-left +button_text = +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 = 20 + +#------------------------------------- +# 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 = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 0 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 32 + +#------------------------------------- +# Button 3 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = Logout... (super + x) +button_lclick_command = mb-jgtools mblogout 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 = 24 + +#------------------------------------- +# Button 4 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Right Sidepanel (super + ctrl + right) +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 = 20 + +#------------------------------------- +# 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/es/.config/tint2/gruvbox.tint2rc b/lang/es/.config/tint2/gruvbox.tint2rc new file mode 100644 index 0000000..d7acb3f --- /dev/null +++ b/lang/es/.config/tint2/gruvbox.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf ab27 ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #151515 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #202020 100 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #151515 100 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:ET:FEEPSBECPP +panel_size = 1900 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #a89984 100 +task_active_font_color = #ddc7a1 100 +task_iconified_font_color = #928374 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #d4be98 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Today is %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +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 = + +#------------------------------------- +# Separator 1 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +execp_lclick_command = show_desktop +execp_rclick_command = jgdesktops ipc +execp_mclick_command = +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #d8a657 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #d8a657 100 +tooltip_font = Rubik 10 + diff --git a/lang/es/.config/tint2/mabox2001.tint2rc b/lang/es/.config/tint2/mabox2001.tint2rc new file mode 100644 index 0000000..53656a2 --- /dev/null +++ b/lang/es/.config/tint2/mabox2001.tint2rc @@ -0,0 +1,322 @@ +#---- Generated by tint2conf 0b9b ---- +# 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: Tarea predeterminada +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: Tarea activa +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: Mensaje emergente +rounded = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 100 +background_color_hover = #000000 60 +border_color_hover = #f2e4e4 60 +background_color_pressed = #000000 60 +border_color_pressed = #e9e4e4 60 + +# Background 6: Nombre del escritorio activo +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: Bandeja del sistema, Lanzador, Nombre de escritorio inactivo, Reloj +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 60 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPLTSBCPP +panel_size = 80% 34 +panel_margin = 4 4 +panel_padding = 1 1 4 +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.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 = 24 +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 = Papirus +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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %H:%M +time2_format = +time1_font = sans 12 +time1_timezone = +time2_timezone = +time2_font = sans 6 +clock_font_color = #ffffff 60 +clock_padding = 8 0 +clock_background_id = 7 +clock_tooltip = Hoy es %A, %e de %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = Panel Izquierdo - Lugares (ctrl+win+left) +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 = Izquierda -> Menú principal, Derecha - Menú de configuración +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = system-shutdown +button_text = +button_tooltip = Exit Dialog (win+x) +button_lclick_command = mb-jgtools mblogout 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 = -1 +button_centered = 0 +button_max_icon_size = 24 + +#------------------------------------- +# Button 4 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Panel Derecho(ctrl+win+right) +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.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/es/.config/tint2/mabox2001neon.tint2rc b/lang/es/.config/tint2/mabox2001neon.tint2rc new file mode 100644 index 0000000..6c4ec61 --- /dev/null +++ b/lang/es/.config/tint2/mabox2001neon.tint2rc @@ -0,0 +1,453 @@ +#---- Generated by tint2conf dd94 ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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: Button, Egzekutor, 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPPPPPLTSEPBECPP +panel_size = 80% 34 +panel_margin = 4 4 +panel_padding = 1 1 1 +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.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 = 2 2 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 = 24 +systray_icon_asb = 100 0 0 +systray_monitor = 1 +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 6 4 4 +launcher_background_id = 7 +launcher_icon_background_id = 0 +launcher_icon_size = 24 +launcher_icon_asb = 100 0 0 +launcher_icon_theme = BeautyLine +launcher_icon_theme_override = 1 +startup_notifications = 0 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 7 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 16 + +#------------------------------------- +# Executor 2 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left SidePanel - Places (ctrl+win+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 0 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = LMB -> main menu, RMB -> panel settings +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 4 0 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_icon = desktop +button_text = +button_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +button_lclick_command = show_desktop +button_rclick_command = skippy-xd-fix +button_mclick_command = jgdesktops ipc +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 16 + +#------------------------------------- +# Button 8 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 16 + +#------------------------------------- +# Button 9 +button = new +button_text =  +button_tooltip = Right SidePanel (ctrl+win+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 16 + +#------------------------------------- +# 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/es/.config/tint2/nordic.tint2rc b/lang/es/.config/tint2/nordic.tint2rc new file mode 100644 index 0000000..1b6003f --- /dev/null +++ b/lang/es/.config/tint2/nordic.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf b92b ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #1f232b 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #2b303c 100 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #1f232b 80 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:EET:FEPSBECPP +panel_size = 1900 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #81a1c1 100 +task_active_font_color = #a3be8c 100 +task_iconified_font_color = #4c566a 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #d8dee9 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Today is %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Show Desktop, MW:Switch Desktop, R:Windows List +execp_lclick_command = show_desktop +execp_rclick_command = jgdesktops ipc +execp_mclick_command = +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #8fbcbb 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, MW: Volume, R: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #8fbcbb 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Left Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L: Menu / Application launcher (super), R: Panel Settings Menu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: File manager (super + f), R: Places menu (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Web browser (super+w), R: More choices +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Screenshot Tool (super+PrtScr) R: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) M: Logout now, R: Edit Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Right Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #ebcb8b 100 +tooltip_font = Rubik 10 + diff --git a/lang/pl/.config/blob/ArcDark/MBcolors.colorrc b/lang/pl/.config/blob/ArcDark/MBcolors.colorrc new file mode 100644 index 0000000..c8e7eee --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 0 +sep_height = 5 +sep_halign = center +menu_gradient_pos=none +color_menu_bg = #14161B 80 +color_menu_bg_to = #000000 90 +color_menu_border = #2d3036 100 +color_norm_bg = #2b303b 0 +color_norm_fg = #D3DAE3 100 +color_sel_bg = #3498db 100 +color_sel_fg = #ffffff 100 +color_sel_border = #3498db 100 +color_sep_fg = #2d3036 100 +color_title_bg = #2d3036 100 +color_title_fg = #D3DAE3 100 +color_title_border = #eff0f1 10 diff --git a/lang/pl/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..1045a69 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + color2 = '#3cd425', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..ecc37ac --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..d982718 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 128, + minimum_width = 128, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[128x128]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..271c245 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + color2 = '#3cd425', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..62a13db --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..db0e873 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + color2 = '#3cd425', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..a8246c5 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + cpu_avg_samples = 2, + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..9732a69 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..ce6159c --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + color2 = '#3cd425', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..7dd929b --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 140, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..de42b0e --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..567acc2 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + color2 = '#3cd425', + color3 = '#e8cc2d', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..be0949a --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + color2 = '#3cd425', + color3 = '#e8cc2d', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..694b75f --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#309552', + color0 = '#accdc7', + color1 = '#61c4bc', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/ArcDark/mvars.txt b/lang/pl/.config/blob/ArcDark/mvars.txt new file mode 100644 index 0000000..89eb7c4 --- /dev/null +++ b/lang/pl/.config/blob/ArcDark/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=false +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/ArcDark/wpicon.png b/lang/pl/.config/blob/ArcDark/wpicon.png new file mode 100644 index 0000000..c98f805 Binary files /dev/null and b/lang/pl/.config/blob/ArcDark/wpicon.png differ diff --git a/lang/pl/.config/blob/ArcDark/wpicon_wide.png b/lang/pl/.config/blob/ArcDark/wpicon_wide.png new file mode 100644 index 0000000..65ab6ff Binary files /dev/null and b/lang/pl/.config/blob/ArcDark/wpicon_wide.png differ diff --git a/lang/pl/.config/blob/CyberPunk_Neon/MBcolors.colorrc b/lang/pl/.config/blob/CyberPunk_Neon/MBcolors.colorrc new file mode 100644 index 0000000..30bff5c --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 0 +item_border = 0 +menu_gradient_pos=top +color_menu_bg = #091833 90 +color_menu_bg_to = #091833 95 +color_menu_border = #023748 100 +color_norm_bg = #2b303b 0 +color_norm_fg = #0ABDC6 100 +color_sel_bg = #711c91 100 +color_sel_fg = #091833 100 +color_sel_fg = #eeeeee 100 +color_sel_border = #711c91 100 +color_sep_fg = #0ABDC6 20 +color_title_bg = #000B1E 100 +color_title_fg = #0ABDC6 100 +color_title_border = #023748 60 + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..d15154a --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..2d7217c --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..5181fec --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..fd79cbd --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..ff6b4fe --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..3f2fc41 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#0d081b', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..4b33271 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..1f7d47b --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..5e27888 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..35461a3 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..88442d0 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 140, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..9cb1c27 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..63f0b53 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + color3 = '#6c98c8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..347fa5f --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + color2 = '#5c8db1', + color3 = '#6c98c8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..6269699 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#0d081b', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#6c98c8', + color0 = '#a5439e', + color1 = '#4f6998', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/CyberPunk_Neon/mvars.txt b/lang/pl/.config/blob/CyberPunk_Neon/mvars.txt new file mode 100644 index 0000000..8128ba4 --- /dev/null +++ b/lang/pl/.config/blob/CyberPunk_Neon/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#a5439e +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/CyberPunk_Neon/wpicon.png b/lang/pl/.config/blob/CyberPunk_Neon/wpicon.png new file mode 100644 index 0000000..7e45bd0 Binary files /dev/null and b/lang/pl/.config/blob/CyberPunk_Neon/wpicon.png differ diff --git a/lang/pl/.config/blob/CyberPunk_Neon/wpicon_wide.png b/lang/pl/.config/blob/CyberPunk_Neon/wpicon_wide.png new file mode 100644 index 0000000..d914859 Binary files /dev/null and b/lang/pl/.config/blob/CyberPunk_Neon/wpicon_wide.png differ diff --git a/lang/pl/.config/blob/Dracula/MBcolors.colorrc b/lang/pl/.config/blob/Dracula/MBcolors.colorrc new file mode 100644 index 0000000..59ebf7d --- /dev/null +++ b/lang/pl/.config/blob/Dracula/MBcolors.colorrc @@ -0,0 +1,15 @@ +item_radius = 2 +item_border = 1 +color_menu_border = #BD93F9 100 +color_sep_fg = #BD93F9 20 +color_title_bg = #FF79C6 60 +color_title_border = #FF79C6 50 +color_title_fg = #282A36 100 +sep_halign = Center +color_menu_bg = #282A36 90 +color_menu_bg_to = #1E1F29 90 +color_norm_fg = #f8f8f2 100 +color_sel_bg = #BD93F9 10 +color_sel_border = #BD93F9 40 +color_sel_fg = #FF79C6 100 +menu_gradient_pos=bottom_right diff --git a/lang/pl/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..8a165db --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + color2 = '#e93a9a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..7f68d6a --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = true, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/Dracula/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..258fd4e --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + color2 = '#e93a9a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..fb465bf --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..5315c48 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#2a2c39', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..13a548f --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + color2 = '#e93a9a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..32ea262 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..78a0934 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..0ea649a --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + color2 = '#e93a9a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..af8ebb3 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 140, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..34330f8 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..92945b5 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + color2 = '#e93a9a', + color3 = '#8a8ea8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..5b9ab3f --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + color2 = '#e93a9a', + color3 = '#8a8ea8', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..df1690c --- /dev/null +++ b/lang/pl/.config/blob/Dracula/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#2a2c39', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#474b60', + color0 = '#896eb5', + color1 = '#666a87', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/Dracula/mvars.txt b/lang/pl/.config/blob/Dracula/mvars.txt new file mode 100644 index 0000000..5549140 --- /dev/null +++ b/lang/pl/.config/blob/Dracula/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰕥 +ok_fgcolor=#f472d0 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/Dracula/wpicon.png b/lang/pl/.config/blob/Dracula/wpicon.png new file mode 100644 index 0000000..b20631a Binary files /dev/null and b/lang/pl/.config/blob/Dracula/wpicon.png differ diff --git a/lang/pl/.config/blob/Dracula/wpicon_wide.png b/lang/pl/.config/blob/Dracula/wpicon_wide.png new file mode 100644 index 0000000..839f22b Binary files /dev/null and b/lang/pl/.config/blob/Dracula/wpicon_wide.png differ diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/MBcolors.colorrc b/lang/pl/.config/blob/Gruvbox-Mabox/MBcolors.colorrc new file mode 100644 index 0000000..b66bb02 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/MBcolors.colorrc @@ -0,0 +1,17 @@ +# item_radius = 1 +#item_border = 1 +# sep_height = 5 +sep_halign = Center +color_menu_bg = #282828 100 +color_menu_bg_to = #1d2021 100 +color_menu_border = #3c3836 100 +# color_norm_bg = #000000 00 +color_norm_fg = #d4be98 100 +color_sel_bg = #32302f 100 +color_sel_fg = #ddc7a1 100 +color_sel_border = #1d2021 100 +color_sep_fg = #504945 100 +color_title_fg = #ebdbb2 100 +color_title_bg = #1d2021 100 +color_title_border = #3c3836 100 +menu_gradient_pos=top_right diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..274542d --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#dbbc33', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..4267384 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..f21b706 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-circle.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..14ed793 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#dbbc33', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..ba3d297 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..54d126d --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#282828', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..3a614b6 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#dbbc33', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..5b66756 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..2691713 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..9acdf98 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#dbbc33', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..83c39f5 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..691504b --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..8c1f8c2 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#dbbc33', + color3 = '#d79921', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..d4fa0a0 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + color2 = '#dbbc33', + color3 = '#d79921', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 13, + border_outer_margin = 3, + border_width = 6, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..41b0792 --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#282828', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#665C54', + color0 = '#ebdbb2', + color1 = '#98971a', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 13, + border_outer_margin = 3, +-- border width + border_width = 6, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/mvars.txt b/lang/pl/.config/blob/Gruvbox-Mabox/mvars.txt new file mode 100644 index 0000000..d06f3eb --- /dev/null +++ b/lang/pl/.config/blob/Gruvbox-Mabox/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#e6c637 +logo_out_color=#121315 +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/wpicon.png b/lang/pl/.config/blob/Gruvbox-Mabox/wpicon.png new file mode 100644 index 0000000..ca2e697 Binary files /dev/null and b/lang/pl/.config/blob/Gruvbox-Mabox/wpicon.png differ diff --git a/lang/pl/.config/blob/Gruvbox-Mabox/wpicon_wide.png b/lang/pl/.config/blob/Gruvbox-Mabox/wpicon_wide.png new file mode 100644 index 0000000..7a727b1 Binary files /dev/null and b/lang/pl/.config/blob/Gruvbox-Mabox/wpicon_wide.png differ diff --git a/lang/pl/.config/blob/Istredd/MBcolors.colorrc b/lang/pl/.config/blob/Istredd/MBcolors.colorrc new file mode 100644 index 0000000..ef13a3b --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 0 +sep_height = 5 +sep_halign = center +color_menu_bg = #d3d4bf 90 +color_menu_border = #e9eeea 90 +color_norm_bg = #d3d4bf 90 +color_norm_fg = #0c1d23 90 +color_sel_bg = #e8e8dd 100 +color_sel_fg = #060b0a 90 +color_sel_border = #c6b76b 90 +color_sep_fg = #a29d62 20 +color_title_bg = #cdc76d 90 +color_title_border = #c6b76b 90 +color_title_fg = #0c1d23 90 +menu_gradient_pos = top_right +color_menu_bg_to = #d2cda1 90 diff --git a/lang/pl/.config/blob/Istredd/MBcolors/close.xbm b/lang/pl/.config/blob/Istredd/MBcolors/close.xbm new file mode 100644 index 0000000..ab7ff80 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/close.xbm @@ -0,0 +1,4 @@ +#define close_width 8 +#define close_height 8 +static unsigned char close_bits[] = { + 0xc3, 0xe7, 0x7e, 0x3c, 0x3c, 0x7e, 0xe7, 0xc3 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/close_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/close_hover.xbm new file mode 100644 index 0000000..de852f9 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/close_hover.xbm @@ -0,0 +1,5 @@ +#define close_hover_width 12 +#define close_hover_height 12 +static unsigned char close_hover_bits[] = { + 0x00, 0x00, 0x06, 0x06, 0x0e, 0x07, 0x9c, 0x03, 0x98, 0x01, 0x00, 0x00, + 0x00, 0x00, 0x98, 0x01, 0x9c, 0x03, 0x0e, 0x07, 0x06, 0x06, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/close_pressed.xbm b/lang/pl/.config/blob/Istredd/MBcolors/close_pressed.xbm new file mode 100644 index 0000000..371a6b4 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/close_pressed.xbm @@ -0,0 +1,5 @@ +#define close_pressed_width 12 +#define close_pressed_height 12 +static unsigned char close_pressed_bits[] = { + 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/desk.xbm b/lang/pl/.config/blob/Istredd/MBcolors/desk.xbm new file mode 100644 index 0000000..abca780 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/desk.xbm @@ -0,0 +1,4 @@ +#define desk_toggled_width 8 +#define desk_toggled_height 8 +static unsigned char desk_toggled_bits[] = { + 0xe7, 0xe7, 0xe7, 0x00, 0x00, 0xe7, 0xe7, 0xe7 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/desk_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/desk_hover.xbm new file mode 100644 index 0000000..b6059d4 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/desk_hover.xbm @@ -0,0 +1,5 @@ +#define desk_hover_width 12 +#define desk_hover_height 12 +static unsigned char desk_hover_bits[] = { + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x9e, 0x07, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/desk_pressed.xbm b/lang/pl/.config/blob/Istredd/MBcolors/desk_pressed.xbm new file mode 100644 index 0000000..f057b9a --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/desk_pressed.xbm @@ -0,0 +1,5 @@ +#define desk_pressed_width 12 +#define desk_pressed_height 12 +static unsigned char desk_pressed_bits[] = { + 0x00, 0x00, 0x02, 0x04, 0x0c, 0x03, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x0c, 0x03, 0x02, 0x04, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled.xbm b/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled.xbm new file mode 100644 index 0000000..b4b5330 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled.xbm @@ -0,0 +1,4 @@ +#define desk_width 8 +#define desk_height 8 +static unsigned char desk_bits[] = { + 0x04, 0x0e, 0x3f, 0x1e, 0x1c, 0x24, 0x40, 0x80 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm new file mode 100644 index 0000000..0dc2f60 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define desk_toggled_hover_width 12 +#define desk_toggled_hover_height 12 +static unsigned char desk_toggled_hover_bits[] = { + 0x00, 0x00, 0x9e, 0x07, 0x9e, 0x04, 0x9e, 0x04, 0x9e, 0x07, 0x00, 0x00, + 0x00, 0x00, 0x9e, 0x07, 0x92, 0x04, 0x92, 0x04, 0x9e, 0x07, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm b/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm new file mode 100644 index 0000000..876649c --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/desk_toggled_pressed.xbm @@ -0,0 +1,5 @@ +#define desk_toggled_pressed_width 12 +#define desk_toggled_pressed_height 12 +static unsigned char desk_toggled_pressed_bits[] = { + 0x00, 0x00, 0x02, 0x04, 0x0c, 0x03, 0x0c, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0c, 0x03, 0x0c, 0x03, 0x02, 0x04, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/iconify.xbm b/lang/pl/.config/blob/Istredd/MBcolors/iconify.xbm new file mode 100644 index 0000000..9a9743f --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/iconify.xbm @@ -0,0 +1,4 @@ +#define iconify_width 8 +#define iconify_height 8 +static unsigned char iconify_bits[] = { + 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/iconify_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/iconify_hover.xbm new file mode 100644 index 0000000..53b1ba6 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/iconify_hover.xbm @@ -0,0 +1,5 @@ +#define iconify_hover_width 12 +#define iconify_hover_height 12 +static unsigned char iconify_hover_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0x03, 0xfc, 0x03, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/iconify_pressed.xbm b/lang/pl/.config/blob/Istredd/MBcolors/iconify_pressed.xbm new file mode 100644 index 0000000..21267b6 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/iconify_pressed.xbm @@ -0,0 +1,5 @@ +#define iconify_pressed_width 12 +#define iconify_pressed_height 12 +static unsigned char iconify_pressed_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x01, 0xf8, 0x01, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/max.xbm b/lang/pl/.config/blob/Istredd/MBcolors/max.xbm new file mode 100644 index 0000000..505e112 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/max.xbm @@ -0,0 +1,4 @@ +#define titlebutton_max_2_width 8 +#define titlebutton_max_2_height 8 +static unsigned char titlebutton_max_2_bits[] = { + 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/max_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/max_hover.xbm new file mode 100644 index 0000000..6ef5391 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/max_hover.xbm @@ -0,0 +1,5 @@ +#define max_hover_width 12 +#define max_hover_height 12 +static unsigned char max_hover_bits[] = { + 0xff, 0x0f, 0xff, 0x0f, 0xff, 0x0f, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, + 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0x01, 0x08, 0xff, 0x0f }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/max_toggled.xbm b/lang/pl/.config/blob/Istredd/MBcolors/max_toggled.xbm new file mode 100644 index 0000000..505e112 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/max_toggled.xbm @@ -0,0 +1,4 @@ +#define titlebutton_max_2_width 8 +#define titlebutton_max_2_height 8 +static unsigned char titlebutton_max_2_bits[] = { + 0xf8, 0xf0, 0xe0, 0xc1, 0x83, 0x07, 0x0f, 0x1f }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm new file mode 100644 index 0000000..e2c8cfa --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/max_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define max_toggled_hover_width 12 +#define max_toggled_hover_height 12 +static unsigned char max_toggled_hover_bits[] = { + 0x00, 0x09, 0x00, 0x05, 0x00, 0x03, 0x00, 0x0f, 0xff, 0x00, 0xff, 0x00, + 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0x81, 0x00, 0xff, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/shade.xbm b/lang/pl/.config/blob/Istredd/MBcolors/shade.xbm new file mode 100644 index 0000000..fcacf42 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/shade.xbm @@ -0,0 +1,4 @@ +#define shade_width 8 +#define shade_height 8 +static unsigned char shade_bits[] = { + 0x18, 0x3c, 0x7e, 0xff, 0xdb, 0x18, 0x18, 0x18 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/shade_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/shade_hover.xbm new file mode 100644 index 0000000..eac4e87 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/shade_hover.xbm @@ -0,0 +1,5 @@ +#define shade_hover_width 12 +#define shade_hover_height 12 +static unsigned char shade_hover_bits[] = { + 0x00, 0x00, 0xfe, 0x07, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/shade_pressed.xbm b/lang/pl/.config/blob/Istredd/MBcolors/shade_pressed.xbm new file mode 100644 index 0000000..4a39d82 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/shade_pressed.xbm @@ -0,0 +1,5 @@ +#define shade_pressed_width 12 +#define shade_pressed_height 12 +static unsigned char shade_pressed_bits[] = { + 0x00, 0x00, 0xf8, 0x01, 0xf8, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/shade_toggled.xbm b/lang/pl/.config/blob/Istredd/MBcolors/shade_toggled.xbm new file mode 100644 index 0000000..594201e --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/shade_toggled.xbm @@ -0,0 +1,4 @@ +#define shade_toggled_width 8 +#define shade_toggled_height 8 +static unsigned char shade_toggled_bits[] = { + 0x18, 0x18, 0x18, 0xdb, 0xff, 0x7e, 0x3c, 0x18 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm b/lang/pl/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm new file mode 100644 index 0000000..686fb9c --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/shade_toggled_hover.xbm @@ -0,0 +1,5 @@ +#define shade_toggled_hover_width 12 +#define shade_toggled_hover_height 12 +static unsigned char shade_toggled_hover_bits[] = { + 0x00, 0x00, 0xfe, 0x07, 0xfe, 0x07, 0x02, 0x04, 0x02, 0x04, 0x02, 0x04, + 0x02, 0x04, 0x02, 0x04, 0xfe, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/lang/pl/.config/blob/Istredd/MBcolors/themerc b/lang/pl/.config/blob/Istredd/MBcolors/themerc new file mode 100644 index 0000000..89781de --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/themerc @@ -0,0 +1,82 @@ +#AB #579c8e +#NL #292929 +#AF #ffffff +#NB #383838 +#AL #292929 +#NF #dadada +#G? True +#R? False +#B? True +#H? False + +border.width: 1 +padding.width: 4 +padding.height: 4 +window.client.padding.width: 0 +window.client.padding.height: 0 +window.handle.width: 4 + +window.active.label.text.font: shadow=y:shadowtint=70:shadowoffset=1 +window.inactive.label.text.font: shadow=y:shadowtint=20:shadowoffset=1 + +*.active.border.color: #292929 +*.inactive.border.color: #292929 + +window.*.grip.bg: parentrelative +window.*.title.bg: flat vertical gradient +window.*.label.bg: parentrelative +window.*.button.*.bg: parentrelative +window.*.handle.bg: flat vertical gradient +window.*.text.justify: center + +window.active.title.bg.color: #579c8e +window.active.title.bg.colorTo: #41756a +window.active.label.text.color: #ffffff +window.active.button.*.unpressed.image.color: #ffffff +window.active.button.*.disabled.image.color: #8fbdb3 +window.active.button.*.hover.image.color: #abcdc6 +window.active.button.*.pressed.image.color: #2b4e47 +window.active.handle.bg.color: #383838 +window.active.handle.bg.colorTo: #252525 + +window.inactive.title.bg.color: #383838 +window.inactive.title.bg.colorTo: #2a2a2a +window.inactive.label.text.color: #898989 +window.inactive.button.*.unpressed.image.color: #898989 +window.inactive.button.*.disabled.image.color: #6e6e6e +window.inactive.button.*.hover.image.color: #dadada +window.inactive.button.*.pressed.image.color: #1c1c1c +window.inactive.handle.bg.color: #383838 +window.inactive.handle.bg.colorTo: #252525 + +menu.title.bg: flat vertical gradient +menu.title.bg.color: #579c8e +menu.title.bg.colorTo: #41756a +menu.title.text.color: #ffffff +menu.items.bg: flat diagonal gradient +menu.items.bg.color: #383838 +menu.items.bg.colorTo: #2a2a2a +menu.items.text.color: #dadada +menu.items.disabled.text.color: #6e6e6e +menu.items.active.bg: flat vertical gradient +menu.items.active.bg.color: #579c8e +menu.items.active.bg.colorTo: #41756a +menu.items.active.text.color: #ffffff +menu.items.active.disabled.text.color: #8fbdb3 +menu.separator.color: #292929 +menu.separator.padding.width: 0 +menu.separator.width: 1 + +osd.bg: flat diagonal gradient +osd.bg.color: #383838 +osd.bg.colorTo: #2a2a2a +osd.unhilight.bg: flat diagonal gradient +osd.unhilight.bg.color: #383838 +osd.unhilight.bg.colorTo: #2a2a2a +osd.hilight.bg: flat diagonal gradient +osd.hilight.bg.color: #579c8e +osd.hilight.bg.colorTo: #41756a +window.active.grip.bg.color: #222222 +window.active.grip.bg.colorTo: #222222 +window.inactive.grip.bg.color: #222222 +window.inactive.grip.bg.colorTo: #222222 diff --git a/lang/pl/.config/blob/Istredd/MBcolors/themerc.bak b/lang/pl/.config/blob/Istredd/MBcolors/themerc.bak new file mode 100644 index 0000000..89781de --- /dev/null +++ b/lang/pl/.config/blob/Istredd/MBcolors/themerc.bak @@ -0,0 +1,82 @@ +#AB #579c8e +#NL #292929 +#AF #ffffff +#NB #383838 +#AL #292929 +#NF #dadada +#G? True +#R? False +#B? True +#H? False + +border.width: 1 +padding.width: 4 +padding.height: 4 +window.client.padding.width: 0 +window.client.padding.height: 0 +window.handle.width: 4 + +window.active.label.text.font: shadow=y:shadowtint=70:shadowoffset=1 +window.inactive.label.text.font: shadow=y:shadowtint=20:shadowoffset=1 + +*.active.border.color: #292929 +*.inactive.border.color: #292929 + +window.*.grip.bg: parentrelative +window.*.title.bg: flat vertical gradient +window.*.label.bg: parentrelative +window.*.button.*.bg: parentrelative +window.*.handle.bg: flat vertical gradient +window.*.text.justify: center + +window.active.title.bg.color: #579c8e +window.active.title.bg.colorTo: #41756a +window.active.label.text.color: #ffffff +window.active.button.*.unpressed.image.color: #ffffff +window.active.button.*.disabled.image.color: #8fbdb3 +window.active.button.*.hover.image.color: #abcdc6 +window.active.button.*.pressed.image.color: #2b4e47 +window.active.handle.bg.color: #383838 +window.active.handle.bg.colorTo: #252525 + +window.inactive.title.bg.color: #383838 +window.inactive.title.bg.colorTo: #2a2a2a +window.inactive.label.text.color: #898989 +window.inactive.button.*.unpressed.image.color: #898989 +window.inactive.button.*.disabled.image.color: #6e6e6e +window.inactive.button.*.hover.image.color: #dadada +window.inactive.button.*.pressed.image.color: #1c1c1c +window.inactive.handle.bg.color: #383838 +window.inactive.handle.bg.colorTo: #252525 + +menu.title.bg: flat vertical gradient +menu.title.bg.color: #579c8e +menu.title.bg.colorTo: #41756a +menu.title.text.color: #ffffff +menu.items.bg: flat diagonal gradient +menu.items.bg.color: #383838 +menu.items.bg.colorTo: #2a2a2a +menu.items.text.color: #dadada +menu.items.disabled.text.color: #6e6e6e +menu.items.active.bg: flat vertical gradient +menu.items.active.bg.color: #579c8e +menu.items.active.bg.colorTo: #41756a +menu.items.active.text.color: #ffffff +menu.items.active.disabled.text.color: #8fbdb3 +menu.separator.color: #292929 +menu.separator.padding.width: 0 +menu.separator.width: 1 + +osd.bg: flat diagonal gradient +osd.bg.color: #383838 +osd.bg.colorTo: #2a2a2a +osd.unhilight.bg: flat diagonal gradient +osd.unhilight.bg.color: #383838 +osd.unhilight.bg.colorTo: #2a2a2a +osd.hilight.bg: flat diagonal gradient +osd.hilight.bg.color: #579c8e +osd.hilight.bg.colorTo: #41756a +window.active.grip.bg.color: #222222 +window.active.grip.bg.colorTo: #222222 +window.inactive.grip.bg.color: #222222 +window.inactive.grip.bg.colorTo: #222222 diff --git a/lang/pl/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..15b196f --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/Istredd/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..f38e095 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..923bf7d --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..92cdffe --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..ae47f43 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..3f2b0d1 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..c996341 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..afa9909 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..aa98766 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..d8c20e4 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..55c9e18 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..655051d --- /dev/null +++ b/lang/pl/.config/blob/Istredd/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/Istredd/mvars.txt b/lang/pl/.config/blob/Istredd/mvars.txt new file mode 100644 index 0000000..ca62ce0 --- /dev/null +++ b/lang/pl/.config/blob/Istredd/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/Istredd/wpicon.png b/lang/pl/.config/blob/Istredd/wpicon.png new file mode 100644 index 0000000..9f32a83 Binary files /dev/null and b/lang/pl/.config/blob/Istredd/wpicon.png differ diff --git a/lang/pl/.config/blob/Istredd/wpicon_wide.png b/lang/pl/.config/blob/Istredd/wpicon_wide.png new file mode 100644 index 0000000..05ca3f9 Binary files /dev/null and b/lang/pl/.config/blob/Istredd/wpicon_wide.png differ diff --git a/lang/pl/.config/blob/Mabox-superdesk/MBcolors.colorrc b/lang/pl/.config/blob/Mabox-superdesk/MBcolors.colorrc new file mode 100644 index 0000000..07110b9 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/MBcolors.colorrc @@ -0,0 +1,17 @@ +item_radius = 2 +item_border = 1 +sep_height = 2 +sep_halign = Right +menu_gradient_pos=top_right +color_menu_bg = #2c2c2c 90 +color_menu_bg_to = #111111 90 +color_menu_border = #2c2c2c 60 +color_norm_bg = #2b303b 0 +color_norm_fg = #aaaaaa 100 +color_sel_bg = #169f6f 30 +color_sel_fg = #ffffff 100 +color_sel_border = #169f6f 40 +color_sep_fg = #2A3833 100 +color_title_bg = #264D3F 100 +color_title_fg = #e9e9e9 100 +color_title_border = #169f6f 40 diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..48d30b7 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#09120e', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + color2 = '#8ba965', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..a051ed0 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..33c36fa --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + color2 = '#8ba965', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..9128fa6 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..5cbb79b --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#09120e', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..57ef8d8 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + color2 = '#8ba965', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..2d9c401 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + cpu_avg_samples = 2, + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..7ac5d89 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..c9a1f59 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + color2 = '#8ba965', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..b136989 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..1d3b53d --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..8b695f8 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + color2 = '#8ba965', + color3 = '#5bc1bc', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..849e580 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + color2 = '#8ba965', + color3 = '#5bc1bc', + cpu_avg_samples = 2, + + + draw_borders = false, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..cde8eca --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#09120e', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#205126', + color0 = '#5e9899', + color1 = '#2f964e', + +-- BORDERS + draw_borders = false, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/Mabox-superdesk/mvars.txt b/lang/pl/.config/blob/Mabox-superdesk/mvars.txt new file mode 100644 index 0000000..13377d3 --- /dev/null +++ b/lang/pl/.config/blob/Mabox-superdesk/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/Mabox-superdesk/wpicon.png b/lang/pl/.config/blob/Mabox-superdesk/wpicon.png new file mode 100644 index 0000000..7cde673 Binary files /dev/null and b/lang/pl/.config/blob/Mabox-superdesk/wpicon.png differ diff --git a/lang/pl/.config/blob/Mabox-superdesk/wpicon_wide.png b/lang/pl/.config/blob/Mabox-superdesk/wpicon_wide.png new file mode 100644 index 0000000..9fee53d Binary files /dev/null and b/lang/pl/.config/blob/Mabox-superdesk/wpicon_wide.png differ diff --git a/lang/pl/.config/blob/Nordic/MBcolors.colorrc b/lang/pl/.config/blob/Nordic/MBcolors.colorrc new file mode 100644 index 0000000..01c5200 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/MBcolors.colorrc @@ -0,0 +1,15 @@ +item_radius = 2 +item_border = 0 +color_menu_border = #4C566A 100 +color_sep_fg = #4C566A 20 +color_title_bg = #3B4252 100 +color_title_border = #2f343f 100 +color_title_fg = #ffffff 100 +sep_halign = center +color_menu_bg = #2f343f 100 +color_menu_bg_to = #2f343f 100 +color_norm_fg = #a8adb5 100 +color_sel_bg = #3B4252 100 +color_sel_border = #A3BE8C 20 +color_sel_fg = #A3BE8C 100 +menu_gradient_pos=top_right diff --git a/lang/pl/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..964cacd --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..2ec64e8 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#2E3440', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc new file mode 100644 index 0000000..b358e14 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/Info_Bar_mbcolor.conkyrc @@ -0,0 +1,71 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Bar Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + + short_units = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. + imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}Host: ${color1}${nodename} ${color0}Uptime: ${color1}${uptime} ${color0}RAM: ${color1}${legacymem} / ${memmax} ${if_existing /proc/swaps partition}${color0}Swap: ${color1}${swap} / ${swapmax} ${endif}${color0}Disk: / : ${color1}${fs_used /} / ${fs_size /} ${if_mounted /home}${color0}Disk: /home : ${color1}${fs_used /home} / ${fs_size /home} ${endif}${color0}CPU Avg: ${color1}${cpu cpu0}% +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..5181fec --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'top_left', + gap_x = 30, + gap_y = 60, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/blob/Nordic/conky/Network_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..3a6d216 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..4f7bd8b --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..95bf11e --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +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 = '#2E3440', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..c525d35 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..79b0237 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..9a4be34 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..2288fbc --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..42f1f84 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..d0136b6 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..3cee0ff --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + color3 = '#88C0D0', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..37ae322 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + color2 = '#EBCB8B', + color3 = '#88C0D0', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 14, + border_outer_margin = 2, + border_width = 4, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..95b2c3e --- /dev/null +++ b/lang/pl/.config/blob/Nordic/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +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 = '#2E3440', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#4C566A', + color0 = '#B48EAD', + color1 = '#D8DEE9', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 14, + border_outer_margin = 2, +-- border width + border_width = 4, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/blob/Nordic/mvars.txt b/lang/pl/.config/blob/Nordic/mvars.txt new file mode 100644 index 0000000..ca62ce0 --- /dev/null +++ b/lang/pl/.config/blob/Nordic/mvars.txt @@ -0,0 +1,24 @@ +jgmenu_use_icons=true +jgmenu_use_borders=true +jgmenu_icon_theme='Numix-Square' +menu_font_family='Ubuntu Regular' +menu_font_size=10 +menu_sep_font_family='Ubuntu Bold' +menu_sep_font_size=11 +arrow_string='' +arrow_string_left='' +jgtools_border=0 +jgtools_padding=8 +jgtools_radius=2 +submenu_spacing=8 +panels_topmargin=60 +panels_heightpos=full +item_height_factor=200 +ok_icon=󰞑 +ok_fgcolor=#008a00 +warn_fgcolor=#FFFFFF +warn_bgcolor=#bd1e24 +logo_in_color=#3cd425 +logo_out_color=#F8F8FF +logo_in_opacity=0.5 +logo_out_opacity=0.5 diff --git a/lang/pl/.config/blob/Nordic/wpicon.png b/lang/pl/.config/blob/Nordic/wpicon.png new file mode 100644 index 0000000..6fa0774 Binary files /dev/null and b/lang/pl/.config/blob/Nordic/wpicon.png differ diff --git a/lang/pl/.config/blob/Nordic/wpicon_wide.png b/lang/pl/.config/blob/Nordic/wpicon_wide.png new file mode 100644 index 0000000..af019dc Binary files /dev/null and b/lang/pl/.config/blob/Nordic/wpicon_wide.png differ diff --git a/lang/pl/.config/conky/Better_Clock_mbcolor.conkyrc b/lang/pl/.config/conky/Better_Clock_mbcolor.conkyrc new file mode 100644 index 0000000..4e5f223 --- /dev/null +++ b/lang/pl/.config/conky/Better_Clock_mbcolor.conkyrc @@ -0,0 +1,68 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Better Clock', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 60, + +-- FONTS + use_xft = true, + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = true, + default_shade_color = '#333333', + draw_outline = false, + default_outline_color = '#333333', + +-- time color + color8 = '#e4e4e4', +--date color + color9 = '#3cd425', + + short_units = true, + + template0 = [[%H:%M]], + template1 = [[%A, %B %d]], + template2 = [[Noto Sans]], + template3 = [[Ubuntu]], + template4 = [[64]], + template5 = [[32]], + template6 = [[16]], + +-- 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, +-- #${voffset -4}${if_existing .config/conky/menuscripts/.hline}${hr 2}${endif} +}; + +conky.text = [[ +${alignc}${font ${template2}:size=${template4}:bold}${color8}${time ${template0}}${if_existing .config/conky/menuscripts/.seconds}${voffset -${template5}}${font ${template2}:size=${template5}}${time %S}${voffset ${template5}}${endif}${font}${color9} +${if_existing .config/conky/menuscripts/.date}${alignr}${font ${template3}:size=${template6}:bold}${time ${template1}}${endif} +]]; + diff --git a/lang/pl/.config/conky/CPU_mbcolor.conkyrc b/lang/pl/.config/conky/CPU_mbcolor.conkyrc new file mode 100644 index 0000000..15b196f --- /dev/null +++ b/lang/pl/.config/conky/CPU_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_colourto = '#222222', + own_window_class = 'Conky', + own_window_title = 'Mabox CPU Conky', + + alignment = 'bottom_left', + gap_x = 460, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + +-- Adds spaces around certain objects to stop them from moving other things +-- around, this only helps if you are using a mono font +-- Options: right, left or none + use_spacer = 'none', + +-- Subtract (file system) buffers from used memory? + no_buffers = true, + +-- Imlib2 image cache size, in bytes. Default 4MiB Increase this value if you use +-- $image lots. Set to 0 to disable the image cache. +--imlib_cache_size = 0, + +-- Use the Xdbe extension? (eliminates flicker) +-- It is highly recommended to use own window with this one +-- so double buffer won't be so big. + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color0}CPU${alignr}$cpu% +${color2}$alignr${cpugraph 50,190 -l -t}${voffset -6} +${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${color0}${top name 5}${alignr}${color1}${top cpu 5}% +]]; + + diff --git a/lang/pl/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc b/lang/pl/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc new file mode 100644 index 0000000..73dc925 --- /dev/null +++ b/lang/pl/.config/conky/Mabox_logo_SVG_mbcolor.conkyrc @@ -0,0 +1,27 @@ +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_class = 'Conky-nobg', + own_window_title = 'Mabox Logo SVG', + + alignment = 'middle_middle', + gap_x = 0, + gap_y = 0, + minimum_height = 96, + minimum_width = 96, + template0 = [[~/.icons/mabox-logo-square.svg]], + template1 = [[96x96]], + + background = true, + no_buffers = true, + imlib_cache_size = 0, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${image ${template0} -s ${template1}} +]]; diff --git a/lang/pl/.config/conky/Network_mbcolor.conkyrc b/lang/pl/.config/conky/Network_mbcolor.conkyrc new file mode 100644 index 0000000..f38e095 --- /dev/null +++ b/lang/pl/.config/conky/Network_mbcolor.conkyrc @@ -0,0 +1,80 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Network Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}NETWORK +${color0}Device ${alignr}${color1}enp0s3 +${color0}IP ${alignr}${color1}${addr enp0s3} +${color0}Download ${color1}${downspeed enp0s3} ${alignr}${color1}${upspeed enp0s3}${color0} Upload +${color2}${downspeedgraph enp0s3 30,100 -t} ${alignr} ${upspeedgraph enp0s3 30,100 -t} +${color0}Total Down ${color1}${totaldown enp0s3} ${alignr}${color1}${totalup enp0s3}${color0} Total Up +${color0}${hr}${color1} +${execi 30 netstat -ept | grep ESTAB | awk '{print $9}' | cut -d/ -f2 | sort | uniq | sort -nr} +]]; diff --git a/lang/pl/.config/conky/PCmanFM_mbcolor.conkyrc b/lang/pl/.config/conky/PCmanFM_mbcolor.conkyrc new file mode 100644 index 0000000..923bf7d --- /dev/null +++ b/lang/pl/.config/conky/PCmanFM_mbcolor.conkyrc @@ -0,0 +1,92 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'PCManFM Help Conky', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 30, + minimum_width = 200, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=9', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = [[ +${color1}PCmanFM - menadżer plików ${alignr}${color0}super+f +${color1}WIDOK ${color0}${hr 1}${voffset -2} +${color0}Ikony ${alignr}${color1}ctrl+1 +${color0}Kompaktowy ${alignr}${color1}ctrl+2 +${color0}Miniatury ${alignr}${color1}ctrl+3 +${color0}Szczegółowa Lists ${alignr}${color1}ctrl+4 +${color0}Pokaż Ukryte ${alignr}${color1}ctrl+H +${color1}IDŹ ${color0}${hr 1} +${voffset -2}${color0}Domowy${alignr}${color1}alt+Home +${color0}Nadrzędny ${alignr}${color1}alt+Up +${color0}Poprzedni ${alignr}${color1}alt+Left +${color0}Następny ${alignr}${color1}alt+Right +${color0}Pasek Lokacji ${alignr}${color1}ctrl+L +${color0}SSH/FTP ... ${alignr}${color1}alt+G C +${color1}OKNO ${color0}${hr 1} +${voffset -2}${color0}Odświerz ${alignr}${color1}F5 +${color0}Dwa Panele ${alignr}${color1}F3 +${color0}Pasek Statusu${alignr}${color1}ctrl+B +${color0}Panel boczny ${alignr}${color1}F9 +${color0}---> Miejsca${alignr}${color1}ctrl+6 +${color0}---> Drzewo katalogów${alignr}${color1}ctrl+7 +${color1}ROZMIAR ${color0}${hr 1}${voffset -2} +${color0}Powiększ${alignr}${alignr}${color1}ctrl++ +${color0}Pomniejsz ${alignr}${color1}ctrl+- +${color0}Normalny Rozmiar ${alignr}${color1}ctrl+0 +]]; diff --git a/lang/pl/.config/conky/Polaroid_mbcolor.conkyrc b/lang/pl/.config/conky/Polaroid_mbcolor.conkyrc new file mode 100644 index 0000000..b1ef681 --- /dev/null +++ b/lang/pl/.config/conky/Polaroid_mbcolor.conkyrc @@ -0,0 +1,37 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = true, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky-nobg', + own_window_title = 'Mabox Polaroid Widget', + + alignment = 'bottom_right', + gap_x = 30, + gap_y = 60, + minimum_width = 333, + minimum_height = 280, + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + use_spacer = 'none', + 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 = 10, + double_buffer = true, + update_interval = 1, +}; + +conky.text = [[ +${execpi 30 ~/.config/conky/menuscripts/polaroid} +#${image ~/.config/conky/images/punaise.png -p 103,0 -s 96x96} +# Get punaise image from https://clipground.com/punaise-png.html and save as ~/.config/conky/images/punaise.png +# then uncomment above image line +]]; + + diff --git a/lang/pl/.config/conky/RAM_mbcolor.conkyrc b/lang/pl/.config/conky/RAM_mbcolor.conkyrc new file mode 100644 index 0000000..92cdffe --- /dev/null +++ b/lang/pl/.config/conky/RAM_mbcolor.conkyrc @@ -0,0 +1,81 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox RAM Conky', + + alignment = 'bottom_left', + gap_x = 690, + gap_y = 60, + minimum_height = 64, + minimum_width = 64, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, +-- graph borders + draw_graph_borders = true, + + +-- MISC +-- Boolean value, if true, Conky will be forked to background when started. + background = true, + short_units = 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 = 2, +}; + +conky.text = [[ +${color0}RAM${alignr 4}$legacymem / $memmax +${color2}${alignr}${memgraph 50,190 -t}${voffset -6} +${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +]]; + + diff --git a/lang/pl/.config/conky/mabox_info_mbcolor.conkyrc b/lang/pl/.config/conky/mabox_info_mbcolor.conkyrc new file mode 100644 index 0000000..ae47f43 --- /dev/null +++ b/lang/pl/.config/conky/mabox_info_mbcolor.conkyrc @@ -0,0 +1,57 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Info Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = 240, + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + cpu_avg_samples = 2, + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${image ~/.config/conky/images/mabox_3d.png -s 64x64}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${color1}${alignr}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -m}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +]]; diff --git a/lang/pl/.config/conky/mabox_tools_mbcolor.conkyrc b/lang/pl/.config/conky/mabox_tools_mbcolor.conkyrc new file mode 100644 index 0000000..3f2b0d1 --- /dev/null +++ b/lang/pl/.config/conky/mabox_tools_mbcolor.conkyrc @@ -0,0 +1,87 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'bottom_left', + gap_x = 240, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}MENU/PANELE BOCZNE ${color0} ${hr 1}${voffset -2} +${color0}Menu główne ${alignr}${color1}super / super+spacebar +${color0}Menu ustawień ${alignr} ${color1}super+s +${color0}Lewy panel ${alignr} ${color1}ctrl+super+left +${color0}Prawy panel ${alignr} ${color1}ctrl+super+right +${color0}Miejsca ${alignr} ${color1}super+. +${color1}MENU KONFIGURACJI ${color0} ${hr 1}${voffset -2} +${color0}Tint2 ${alignr}${color1}super+alt+p +${color0}Conky ${alignr}${color1}super+alt+k +${color0}Menu/Panele ${alignr}${color1}super+alt+m +${color0}Tapeta ${alignr}${color1}super+alt+w +${color0}Blokada ekranu ${alignr}${color1}super+alt+l +${color1}Narzędzia Mabox Linux ${color0} ${hr 1}${voffset -2} +${color0}Paleta Komend ${alignr}${color1}super+F1 +${color0}Colorizer ${alignr}${color1}super+alt+o +${color0}Color Menu ${alignr}${color1}super+alt+c +${color0}Espanso - text expander ${alignr}${color1}super+alt+e +${color0}Dialog wylogowana ${alignr}${color1}super+x +${color0}Zrzuty ekranu ${alignr}${color1}super+PrtScr +]]; + + diff --git a/lang/pl/.config/conky/menuscripts/Mabox_logo_SVG.csv b/lang/pl/.config/conky/menuscripts/Mabox_logo_SVG.csv new file mode 100644 index 0000000..609d636 --- /dev/null +++ b/lang/pl/.config/conky/menuscripts/Mabox_logo_SVG.csv @@ -0,0 +1,33 @@ + Strona domowa,xdg-open https://maboxlinux.org + Forum dyskusyjne,xdg-open https://forum.maboxlinux.org + Manual,xdg-open https://manual.maboxlinux.org +^sep() + Linki,^checkout(more) +^sep(Narzędzia Maboxa) +Centrum Sterowania,mcc +Ekran powitalny,mwelcome +^sep(Menu) +Menu główne ,mb-jgtools main +Menu konfiguracji  + s ,mb-jgtools settings +^sep() +Lewy Panel boczny C +  + Left ,mb-jgtools places +Prawy Panel boczny C +  + Right ,mb-jgtools right +^sep() +Miejsca  + . ,mb-places -s +Menu wylogowania  + x ,mb-jgtools mblogout +Zrz. Ekranu/Nagrywaj  + PrtScr ,mb-jgtools screenshot +^sep(Inne) +Conky Menadżer,colorizer-conky -s +^tag(more) +^sep(Linki) + Repo,xdg-open https://repo.maboxlinux.org + Developer Blog,xdg-open https://blog.maboxlinux.org +^sep() + Wesprzyj,xdg-open https://ko-fi.com/maboxlinux + Mabox na Distrowatch,xdg-open https://distrowatch.com/table.php?distribution=mabox +^sep(Social media) + Reddit,xdg-open https://old.reddit.com/r/MaboxLinux/ + Youtube,xdg-open https://www.youtube.com/c/MaboxLinux + Odysee,xdg-open https://odysee.com/@mabox-linux:8 + Facebook,xdg-open https://facebook.com/maboxlinux/ + Twitter,xdg-open https://twitter.com/MaboxLinux/ diff --git a/lang/pl/.config/conky/menuscripts/sysinfo.csv b/lang/pl/.config/conky/menuscripts/sysinfo.csv new file mode 100644 index 0000000..4bf040a --- /dev/null +++ b/lang/pl/.config/conky/menuscripts/sysinfo.csv @@ -0,0 +1,13 @@ +^sep(Oprogramowanie) +Aktualizacje (Pamac),pamac-manager --updates,system-upgrade +Aktualizacje (cli),mb-cli update,openterm +Pamac,pamac-manager,pamac +Ranking mirrorów,^checkout(mirrory),download + +^tag(mirrory) +^sep(Ranking mirrorów) +Szybko pacman-mirrors -f5,mb-cli mirrors +Wszystkie pacman-mirrors -i -c all,mb-cli mirrors_all +Geoip pacman-mirrors -i --geoip,mb-cli mirrors_geo +^sep() + diff --git a/lang/pl/.config/conky/mount_points_mbcolor.conkyrc b/lang/pl/.config/conky/mount_points_mbcolor.conkyrc new file mode 100644 index 0000000..c996341 --- /dev/null +++ b/lang/pl/.config/conky/mount_points_mbcolor.conkyrc @@ -0,0 +1,68 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Mountpoints Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, +-- minimum_height = 64, + minimum_width = 240, + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#E8CB2D', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 3 conkymountpoints.sh}]]; diff --git a/lang/pl/.config/conky/quoter_mbcolor.conkyrc b/lang/pl/.config/conky/quoter_mbcolor.conkyrc new file mode 100644 index 0000000..afa9909 --- /dev/null +++ b/lang/pl/.config/conky/quoter_mbcolor.conkyrc @@ -0,0 +1,69 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Tools Conky', + + alignment = 'top_middle', + gap_x = 0, + gap_y = 200, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#F8F8FF', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${execpi 1800 quote.sh} +]]; + + diff --git a/lang/pl/.config/conky/shortcuts_mbcolor.conkyrc b/lang/pl/.config/conky/shortcuts_mbcolor.conkyrc new file mode 100644 index 0000000..aa98766 --- /dev/null +++ b/lang/pl/.config/conky/shortcuts_mbcolor.conkyrc @@ -0,0 +1,96 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Shortcuts Conky', + + alignment = 'bottom_left', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}URUCHOM${alignr}${color0}super = windows key${voffset -8} +${color0}${hr 1}${voffset -4} +${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color0}manadżer plików ${alignr}${color1}super+f +${color0}przeglądarka www ${alignr}${color1}super+w +${color0}edytor tekstu ${alignr}${color1}super+e +${color0}wyszukiwanie plików ${alignr}${color1}super+/ +${color0}galculator ${alignr}${color1}super+g +${color0}radio internetowe ${alignr}${color1}super+r +${color0}ustawienia głośności ${alignr}${color1}super+v +${color0}przełącz Picom ${alignr}${color1}super+p +${color0}przełącz Conky ${alignr}${color1}super+c +${color0}blokada ekranu ${alignr}${color1}super+l +${color0}wyjście ${alignr}${color1}super+x +${color1}OKNA ${color0} ${hr 1}${voffset -2} +${color0}zamknij ${alignr} ${color1}alt+F4 +${color0}minimalizuj ${alignr} ${color1}alt+F5 +${color0}maksymalizuj ${alignr} ${color1}alt+F6 +${color0}eksponuj okna ${alignr} ${color1}super+~ +${color0}pokaż pulpit ${alignr} ${color1}super+d +${color0}wł/wył dekorcje okien ${alignr} ${color1}super+b +${color0}pełny ekran ${alignr} ${color1}F11 +${color1}rozmieszczanie okien: +${color0} - połowa ekranu ${alignr} ${color1}super+arrows +${color0} - 1/4 ekranu ${alignr} ${color1}super+numpad[1..9] +${color1}PULPITY ${color0} ${hr 1}${voffset -2} +${color0}idź na pulpit ${alignr} ${color1}super+[1..4] +]]; + + diff --git a/lang/pl/.config/conky/sysinfo_graph_mbcolor.conkyrc b/lang/pl/.config/conky/sysinfo_graph_mbcolor.conkyrc new file mode 100644 index 0000000..d8c20e4 --- /dev/null +++ b/lang/pl/.config/conky/sysinfo_graph_mbcolor.conkyrc @@ -0,0 +1,88 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Graph Conky', + + alignment = 'top_right', + gap_x = 260, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}${alignr}${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3}${color1}${font Cantarell:size=20} ${time %Y}$font +${voffset 10}${goto 20}${color0} CPU${alignr 6}$cpu% ${voffset -22} +${goto 18}${color2}${cpugraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 10}${goto 20}${color0} RAM${alignr 6}$legacymem / $memmax ${voffset -22} +${goto 18}${color2}${memgraph 50,190 -l -t}${voffset -6} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,310 -s 64x64} +${alignr}dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}$alignr${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +# +${color1}$alignr${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +${alignr}${color1}${execpi 1800 checkupdates.sh -g}${font}${color1} +#${voffset 10}${alignr}${color1} available updates ${color1}${font Cantarell:bold:size=10}${execpi 1800 pamac checkupdates -aq| wc -l}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/conky/sysinfo_mbcolor.conkyrc b/lang/pl/.config/conky/sysinfo_mbcolor.conkyrc new file mode 100644 index 0000000..44473c8 --- /dev/null +++ b/lang/pl/.config/conky/sysinfo_mbcolor.conkyrc @@ -0,0 +1,86 @@ +conky.config = { + + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Sysinfo Bar Conky', + + alignment = 'top_right', + gap_x = 30, + gap_y = 60, + minimum_width = '200', + + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + + + draw_shades = false, + default_shade_color = '#222222', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + color2 = '#e8cb2d', + color3 = '#61c4bc', + cpu_avg_samples = 2, + + + draw_borders = true, + stippled_borders = 0, + border_inner_margin = 15, + border_outer_margin = 1, + border_width = 2, + draw_graph_borders = true, + + background = true, + no_buffers = true, + imlib_cache_size = 0, + short_units = true, + double_buffer = true, + update_interval = 2, +}; + +conky.text = [[ +${color1}${font Cantarell:size=16}${time %A}$font\ +${voffset -20}$alignr${color3}${font Cantarell:size=38}${time %e}$font +${color1}${voffset -20}${color3}${font Cantarell:size=18}${time %b}$font\ +${voffset -3} ${color1}${font Cantarell:size=20} ${time %Y}$font +${goto 18}${color1}CPU${alignr}${color0}$cpu% +${goto 18}${color2}${cpubar 4,190 -l -t}${voffset -2} +${goto 18}$font${color0}${top name 1}${alignr}${color1}${top cpu 1}% +${goto 18}${color0}${top name 2}${alignr}${color1}${top cpu 2}% +${goto 18}${color0}${top name 3}${alignr}${color1}${top cpu 3}% +${goto 18}${color0}${top name 4}${alignr}${color1}${top cpu 4}% +${goto 18}${color0}${top name 5}${alignr}${color1}${top cpu 5}% +# +${voffset 8}${goto 18}${color1}RAM${alignr}${color0}$legacymem / $memmax +${goto 18}${color2}${membar 4,190 -l -t}${voffset -2} +${goto 18}${color0}${top_mem name 1}${alignr}${color1}${top_mem mem_res 1} +${goto 18}${color0}${top_mem name 2}${alignr}${color1}${top_mem mem_res 2} +${goto 18}${color0}${top_mem name 3}${alignr}${color1}${top_mem mem_res 3} +${goto 18}${color0}${top_mem name 4}${alignr}${color1}${top_mem mem_res 4} +${goto 18}${color0}${top_mem name 5}${alignr}${color1}${top_mem mem_res 5} +# +${image ~/.config/conky/images/mabox_3d.png -p 0,250 -s 64x64} +${alignr} dysk ${color0}${fs_used /} - ${fs_size /} +${alignr}${color1} pamięć ${color0}$legacymem - $memmax +#${alignr}${color0}${font Cantarell:size=9}swap $swapmax - $swap +# +${voffset 10}${alignr}${color0} Mabox Linux ${execi 10000 awk -F'=' '/DISTRIB_RELEASE=/ {printf $2" "} /CODENAME/ {print $2}' /etc/lsb-release} +${alignr}${color1}${execi 10000 whoami}@${nodename} +${alignr}${color0}uptime ${color1}${uptime_short} +${alignr}${color0}${alignr}jądro ${color1}${kernel} +${alignr}${color0}${alignr}architektura ${color1}${machine} +${alignr}${color0}${alignr}system plików ${color1}${fs_type}${voffset 10} +#${alignr}${color1}${execpi 1800 checkupdates.sh -s}${font}${color1} +${alignr}${color1} pakiety: ${color0}${execi 10000 pacman -Q | wc -l} +${alignr}${color1} gałąź: ${color0}${execi 10000 pacman-mirrors -G} +${voffset -50} +]]; diff --git a/lang/pl/.config/conky/tiling_terminal_mbcolor.conkyrc b/lang/pl/.config/conky/tiling_terminal_mbcolor.conkyrc new file mode 100644 index 0000000..655051d --- /dev/null +++ b/lang/pl/.config/conky/tiling_terminal_mbcolor.conkyrc @@ -0,0 +1,85 @@ +conky.config = { +-- WINDOW + own_window = true, + own_window_type = 'desktop', + own_window_transparent = false, + own_window_hints = 'undecorated,below,skip_taskbar,skip_pager,sticky', + own_window_colour = '#142c2c', + own_window_class = 'Conky', + own_window_title = 'Mabox Terminator Conky', + + alignment = 'bottom_right', + gap_x = 300, + gap_y = 60, + minimum_width = '200', + +-- FONTS + use_xft = true, + font = 'Ubuntu:size=8', + xftalpha = 1, + override_utf8_locale = true, + +-- COLORS + draw_shades = false, + default_shade_color = '#000000', + draw_outline = false, + default_outline_color = '#222222', + + default_color = '#f8f8ff', + color0 = '#accdc7', + color1 = '#309552', + +-- BORDERS + draw_borders = true, +-- Stippled borders? + stippled_borders = 0, +-- border margins + border_inner_margin = 15, + border_outer_margin = 1, +-- border width + border_width = 2, + +-- 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 = 2, +}; + +conky.text = [[ +${color1}PRACA Z TILING TERMINALEM +${color1}URUCHOM ${color0}${hr 1} +${voffset -2}${color0}terminal ${alignr}${color1}super+t +${color0}quake-terminal ${alignr}${color1}ctrl+~,F12 +${color1}PODZIEL ${color0}${hr 1} +${voffset -2}${color0}poziomo ${alignr}${color1}ctrl+shift+o +${color0}pionowo ${alignr}${color1}ctrl+shift+e +${color1}AKCJE ${color0}${hr 1} +${voffset -2}${color0}aktywacja${alignr}${color1}alt+arrows +${color0}zmiana rozmiaru ${alignr}${color1}ctrl+shift+arrows +${color0}zoom ${alignr}${color1}ctrl+shift+x +${color0}pełny ekran ${alignr}${color1}super+enter,F11 +${color0}zamknij ${alignr}${color1}ctrl+shift+w +${color1}ROZMIAR CZCIONKI ${color0}${hr 1}${voffset -2} +${color0}powiększ ${alignr}${alignr}${color1}ctrl++ +${color0}pomniejsz ${alignr}${color1}ctrl+- +${color0}resetuj ${alignr}${color1}ctrl+0 +]]; + + diff --git a/lang/pl/.config/fastfetch/config.jsonc b/lang/pl/.config/fastfetch/config.jsonc new file mode 100644 index 0000000..3d1f222 --- /dev/null +++ b/lang/pl/.config/fastfetch/config.jsonc @@ -0,0 +1,120 @@ +{ + "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", + "logo": { + "source": "~/.config/fastfetch/mabox.ascii", + "padding": { + "left": 1 + }, + "type": "file", + "color": { + "1": "green", + "2": "white", + } + }, + "display": { + "separator": " " + }, + "modules": [ + // Title + { + "type": "title", + "format": "{#1}╭───────────── {#}{user-name-colored}" + }, + // System Information + { + "type": "custom", + "format": "{#1}│ {#}Informacje systemowe" + }, + { + "type": "os", + "key": "{#separator}│ {#keys}󰍹 OS" + }, + { + "type": "kernel", + "key": "{#separator}│ {#keys}󰒋 Jądro" + }, + { + "type": "uptime", + "key": "{#separator}│ {#keys}󰅐 Uptime" + }, + { + "type": "packages", + "key": "{#separator}│ {#keys}󰏖 Pakiety", + "format": "{all}" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Desktop Environment + { + "type": "custom", + "format": "{#1}│ {#}Menadżer Okien" + }, + //{ + //"type": "de", + //"key": "{#separator}│ {#keys}󰧨 DE" + //}, + { + "type": "wm", + "key": "{#separator}│ {#keys}󱂬 WM" + }, + { + "type": "wmtheme", + "key": "{#separator}│ {#keys}󰉼 Motyw" + }, + { + "type": "display", + "key": "{#separator}│ {#keys}󰹑 Rozdzielczość" + }, + { + "type": "shell", + "key": "{#separator}│ {#keys}󰞷 Powłoka" + }, + { + "type": "terminalfont", + "key": "{#separator}│ {#keys}󰛖 Czcionka" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Hardware Information + { + "type": "custom", + "format": "{#1}│ {#}Sprzęt" + }, + { + "type": "cpu", + "key": "{#separator}│ {#keys}󰻠 CPU" + }, + { + "type": "gpu", + "key": "{#separator}│ {#keys}󰢮 GPU" + }, + { + "type": "memory", + "key": "{#separator}│ {#keys}󰍛 Pamięć" + }, + { + "type": "disk", + "key": "{#separator}│ {#keys}󰋊 Dysk (/)", + "folders": "/" + }, + { + "type": "custom", + "format": "{#1}│" + }, + // Colors + { + "type": "colors", + "key": "{#separator}│", + "symbol": "circle" + }, + // Footer + { + "type": "custom", + "format": "{#1}╰───────────────────────────────╯" + } + ] +} diff --git a/lang/pl/.config/jgmenu/append.csv b/lang/pl/.config/jgmenu/append.csv new file mode 100644 index 0000000..0dfbd9e --- /dev/null +++ b/lang/pl/.config/jgmenu/append.csv @@ -0,0 +1,23 @@ +^sep() +#Skróty klawiszowe, ^pipe(jgkeys-pipe),key_bindings +Skróty klawiszowe, mbhelper -s,key_bindings +^sep() +Zrzut ekranu,mb-jgtools screenshot,emblem-photos +^sep() + +Zablokuj ekran,mbscreenlocker,system-lock-screen + +^sep() +Wyjście...,mb-jgtools mblogout,system-shutdown + +^tag(ustawienia) +. ~/.config/mabox/settings.csv + +^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(userguide) +. /usr/share/mb-jgtools/userguide_PL.csv + +. ~/.config/mabox/settings_tags.csv diff --git a/lang/pl/.config/jgmenu/prepend.csv b/lang/pl/.config/jgmenu/prepend.csv new file mode 100644 index 0000000..6c10d0f --- /dev/null +++ b/lang/pl/.config/jgmenu/prepend.csv @@ -0,0 +1,4 @@ +@text,,10,6,150,20,0,left,top,auto,#000000, +@search,,24,6,150,20,2,left,top,auto,#000000 0,Pisz aby wyszukać +^sep() +. ~/.config/mabox/favorites.csv diff --git a/lang/pl/.config/jgmenu/sub-append.csv b/lang/pl/.config/jgmenu/sub-append.csv new file mode 100644 index 0000000..0b45c5b --- /dev/null +++ b/lang/pl/.config/jgmenu/sub-append.csv @@ -0,0 +1,23 @@ +^sep() +#Skróty klawiszowe, ^pipe(jgkeys-pipe),key_bindings +Skróty klawiszowe,mbhelper -s,key_bindings +^sep() +Zrzut ekranu,mb-jgtools screenshot,emblem-photos +^sep() + +Zablokuj ekran,mbscreenlocker,system-lock-screen + +^sep() +Wyjście...,mb-jgtools mblogout,system-shutdown + +^tag(ustawienia) +. ~/.config/mabox/settings.csv + +^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(userguide) +. /usr/share/mb-jgtools/userguide_PL.csv + +. ~/.config/mabox/settings_tags.csv diff --git a/lang/pl/.config/mabox/exit.csv b/lang/pl/.config/mabox/exit.csv new file mode 100644 index 0000000..c522ba5 --- /dev/null +++ b/lang/pl/.config/mabox/exit.csv @@ -0,0 +1,11 @@ +## Dodaj znak komentarza # w liniach które chcesz ukryć +^sep(Wyjście...) +Wyloguj,openbox --exit,system-log-out +#Uśpij,systemctl suspend,system-suspend +#Hibernuj,systemctl hibernate,system-hibernate +Uruchom ponownie,systemctl reboot,system-reboot +Zablokuj ekran, mbscreenlocker,system-lock-screen +Wyłącz,systemctl poweroff,system-shutdown +^sep() +Dostosuj opcje wyjścia,xdg-open $HOME/.config/mabox/exit.csv,geany + diff --git a/lang/pl/.config/mabox/favorites.csv b/lang/pl/.config/mabox/favorites.csv new file mode 100644 index 0000000..a9cccfc --- /dev/null +++ b/lang/pl/.config/mabox/favorites.csv @@ -0,0 +1,11 @@ +^sep(Ulubione) +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 +Dodaj/Usuń programy,pamac-manager,package-manager-icon +#^sep() +#Katalog domowy,^pipe(jgbrowser ~),folder-home +^sep() +Konfiguracja,^checkout(ustawienia),distributor-logo-mabox +^sep(Programy) +#^sep() diff --git a/lang/pl/.config/mabox/jgtype.csv b/lang/pl/.config/mabox/jgtype.csv new file mode 100644 index 0000000..e960549 --- /dev/null +++ b/lang/pl/.config/mabox/jgtype.csv @@ -0,0 +1,25 @@ +^sep(jgtype - pomocnik wpisywania komend) +Aktualizacje,^checkout(updates) +Mirrory i klucze,^checkout(mirrors) +^sep() +Konfiguruj,xdg-open ~/.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/.config/mabox/mainmenu_below_apps.csv b/lang/pl/.config/mabox/mainmenu_below_apps.csv new file mode 100644 index 0000000..8a09340 --- /dev/null +++ b/lang/pl/.config/mabox/mainmenu_below_apps.csv @@ -0,0 +1,2 @@ +^sep() +Katalog Domowy,^pipe(jgbrowser ~),user-home diff --git a/lang/pl/.config/mabox/mbhelper.csv b/lang/pl/.config/mabox/mbhelper.csv new file mode 100644 index 0000000..7507434 --- /dev/null +++ b/lang/pl/.config/mabox/mbhelper.csv @@ -0,0 +1,107 @@ +^sep(Programy) + super-f Menadżer plików PCmanFM,exo-open --launch FileManager + super-w Przeglądarka WWW,exo-open --launch WebBrowser + super-t Terminal,exo-open --launch TerminalEmulator + super-F12 Quake-like Terminal,quake-term + super-e Edytor tekstu,geany + super-g Galculator,galculator + super-h Btop monitor zasobów,^term(btop) + super-/ FSearch wyszukiwanie plików,fsearch + super-r PyRadio,terminator -e 'pyradio' + super-v Kontrola głośności,pavucontrol + super-p włącz/wyłącz Picom,compton_toggle + super-c włącz/wyłącz Conky,conky_toggle + super-. Menu Miejsca,mb-places -s + super-l Blokada ekranu,mbscreenlocker + super-x Ekran wylogowania,mb-jgtools mblogout + +^sep(Menu/Panele Boczne),,,,#menu#sidepanel + super Główne menu,mb-jgtools main,,,#menu + super-s Menu ustawień,mb-jgtools settings,,,#menu + ctrl-super-left Lewy panel boczny,mb-jgtools places,,,#sidepanel#menu + ctrl-super-right Prawy panel boczny,mb-jgtools right,,,#sidepanel#menu + super-alt-d Przełącz widoczność Doku (jeśli używasz Gkrellm w doku),xdotool key Super+Alt+d,,,#sidepanel + +^sep(Okna i Pulpity),,,,#windows#move + super-~ Eksponuj okna,skippy-xd-fix,,,#windows#move + super-d Pokaż pulpit,show_desktop,,,#windows#move + super-Arrows Połowa Ekranu,,,,#windows#move + F11/super-Enter Pełny Ekran,,,,#windows#move + +^sep(DesktopGrid),,,,#desktopgrid + super-KP_7 [na siatce] ustaw okno topleft ,superclick topleft,,,#desktopgrid#windows#move + super-KP_8 [na siatce] ustaw okno top,superclick top,,,#desktopgrid#windows#move + super-KP_9 [na siatce] ustaw okno topright,superclick topright,,,#desktopgrid#windows#move + super-KP_4 [na siatce] ustaw okno left,superclick left,,,#desktopgrid#windows#move + super-KP_5 [na siatce] ustaw okno center,superclick center,,,#desktopgrid#windows#move + super-KP_6 [na siatce] ustaw okno right,superclick right,,,#desktopgrid#windows#move + super-KP_1 [na siatce] ustaw okno bottomleft,superclick bottomleft,,,#desktopgrid#windows#move + super-KP_2 [na siatce] ustaw okno bottom,superclick bottom,,,#desktopgrid#windows#move + super-KP_3 [na siatce] ustaw okno bottomright,superclick bottomright,,,#desktopgrid#windows#move + DesktopGrid - pokaż obrazek pomocniczy,drawgrid,,,#desktopgrid#windows#move + Edytuj plik konfiguracyjny DesktopGrid,xdg-open ~/.config/desktopgrid/desktopgrid.cfg,,,#desktopgrid#config + +^sep(Narzędzia) + super-alt-t Tile helper,jgtile,,,#pipemenu + super-alt-h Historia,jghistory-pipe -s,,,#pipemenu + super-alt-e Espanso - text expander,jgespanso-pipe -s,,,#pipemenu + super-alt-o Colorizer,colorizer -s + super-alt-c Menu Kolorów,colormenu + super-alt-m Konfiguracja Menu/Paneli,jgmenusettings-pipe -s,,,#pipemenu + super-alt-w Konfiguracja Tapety i Blokady Ekranu,jgwallpaperchanger -s,,,#pipemenu + super-alt-k Konfiguracja Conky,jgconky-pipe -s,,,#pipemenu + super-alt-p Konfiguracja panelu Tint2,jgtint2-pipe -s,,,#pipemenu + DesktopGrid menu,jgdeskgrid -s,,,#pipemenu#gap#column#row + DeskMngr menu,jgdeskmngr -s,,,#pipemenu + Okna i Pulpity,jgdesktops -s,,,#pipemenu + Menu połączeń SSH ,jgssh -s,,,#pipemenu + SysInfo menu,jgsysinfo-pipe -s,,,#pipemenu + +^sep(Openbox),,,,#openbox#ob + Obconf - menadżer konfiguracji Openbox,obconf,,,#openbox#ob + Edytuj plik rc.xml,xdg-open ~/.config/openbox/rc.xml,,,#openbox#ob + Rekonfiguruj OpenBox,openbox --reconfigure,,,#openbox#ob + Wszystkie skróty klawiszowe,mb-kb --gui &>/dev/null,,,#shortcuts#openbox#ob + +^sep(Mabox),,,,#mabox + Centrum Sterowania Mabox,mcc,,,#mabox + Ekran powitalny,mwelcome,,,#mabox + Blob - menadżer motywów,mb-obthemes,,,#theme#mabox + Wystrój i ikony,lxappearance,,,#theme + Rozdzielczość ekranu,arandr,,,#monitor + Rozdzielczość ekranu (LXRandR),lxrandr,,,#monitor + Ustawienia zasilania,mate-power-preferences,,, + Powiadomienia,xfce4-notifyd-config,,, + Mysz i Klawiatura,lxinput,,, + Przewodnik użytkownika (online),xdg-open https://manual.maboxlinux.org/en/,,,#mabox#pomoc#support + Forum (online),xdg-open https://forum.maboxlinux.org/,,,#mabox#pomoc#support + +^sep(Zarządzanie oprogramowaniem),,,,#install#update#pamac#mirrors + Pamac - menadżer pakietów,pamac-manager,,,#install#update + Aktualizacja Systemu (Pamac),pamac-manager --updates,,,#update + Aktualizacja Systemu (Yay - cli),^term(yay),,,#update + Ranking Mirrorów wszystkie,^term(sudo pacman-mirrors -i -c all),,,#install#update + Ranking Mirrorów szybko,^term(sudo pacman-mirrors -f5),,,#install#update + Ranking Mirrorów wg GEOIP,^term(sudo pacman-mirrors -i --geoip),,,#install#update + +^sep(Menadżer Ustawień Manjaro),,,,#manjaro#settings#msm + Menadżer Ustawień Manjaro,manjaro-settings-manager,,,#msm +^sep() + Język i formaty,manjaro-settings-manager -m msm_locale + Pakiety językowe,manjaro-settings-manager -m msm_language_packages + Jądro systemowe,manjaro-settings-manager -m msm_kernel + Konta użytkowników,manjaro-settings-manager -m msm_users + Data i Czas,manjaro-settings-manager -m msm_timedate + Ustawienia klawiatury,manjaro-settings-manager -m msm_keyboard + Konfiguracja sprzętowa,manjaro-settings-manager -m msm_mhwd + Instaluj/usuń programy (Pamac),pamac-manager,,,#install + +^sep(Autostart),,,,#autostart#openbox#ob + Wybierz programy/usługi (GUI editor),yautostart,,,#autostart#openbox#ob + Edytuj plik konfiguracyjny Autostart,xdg-open ~/.config/openbox/autostart,,,#autostart#config#openbox#ob + +^sep(Tapety),,,,#wallpapers + Ustaw losową tapetę,mbwallpaper -o,,,#wallpaper + Uruchom tapetowy pokaz slajdów,run_wallpaperslideshow,,,#wallpaper + Wybierz tapetę...,mbwallpaper -c,,,#wallpaper + diff --git a/lang/pl/.config/mabox/places-append.csv b/lang/pl/.config/mabox/places-append.csv new file mode 100644 index 0000000..f95fc0f --- /dev/null +++ b/lang/pl/.config/mabox/places-append.csv @@ -0,0 +1,31 @@ +### Własne komendy w panelu lewym (CTRL + Win + Left) - DÓŁ +# +# Składnia +# Polecenia: +# ETYKIETA,polecenie,ikona (opcjopnalnie) +# +# ^sep() # separator - linia +# ^sep(NAZWA) # separator (pokazuje napis NAZWA) +# +########################## + +^sep(Własne) + Edytuj własne komendy,xdg-open ~/.config/mabox/places-append.csv +^sep() + FSearch - wyszukiwarka plików  + / ,fsearch + PyRadio - Radio Player  + r ,terminator --icon=/usr/share/icons/pyradio.png --geometry=564x440-20-20 -x pyradio -lt + btop - Resource monitor  + h ,^term(btop) + System Info (inxi),terminator -T 'inxi system info (Q to close)' -x bash -c "inxi -Fazy -c2 | less -R" + Prognoza pogody,terminator -T "Prognoza pogody" --geometry=1030x740 -e "curl pl.wttr.in ; read" + +#Terminator (zaawansowane demo),terminator -m -j ~/.config/terminator/2-3-grid.json +^sep() +### WYLOGOWANIE +## Wszystkie opcje bezpośrednio w panelu bocznym +#. ~/.config/mabox/exit.csv + +## lub uruchomienie zewnętrznego okna dialogowego +^sep() + ⏻ Wyjście...  + x ,mb-jgtools mblogout,system-shutdown + +^sep() diff --git a/lang/pl/.config/mabox/places-prepend.csv b/lang/pl/.config/mabox/places-prepend.csv new file mode 100644 index 0000000..4f30dc0 --- /dev/null +++ b/lang/pl/.config/mabox/places-prepend.csv @@ -0,0 +1,25 @@ +### Własne komendy w panelu lewym (ctrl + TAB) - GÓRA +# +# Składnia +# Polecenia: +# ETYKIETA,polecenie,ikona (opcjonalnie) +# +# ^sep() # separator - linia +# ^sep(NAZWA) # separator (pokazuje napis NAZWA) +# +########################## + +# Przykłady: (odkomentuj aby uaktywnić) +#Wyszukiwarka plików,fsearch,fsearch + +### Przeglądarka katalogów i plików +#^sep(Katalogi i pliki) +#/, ^pipe(jgbrowser /),root-directory +#Katalog domowy, ^pipe(jgbrowser $HOME),folder-home +#~/.config, ^pipe(jgbrowser $HOME/.config) + + +#^sep(Grafika) +#The Gimp,gimp +#Inkscape,inkscape +#Blender 3D,blender diff --git a/lang/pl/.config/mabox/right-append.csv b/lang/pl/.config/mabox/right-append.csv new file mode 100644 index 0000000..6eecda7 --- /dev/null +++ b/lang/pl/.config/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...,xdg-open $HOME/.config/mabox/right-append.csv,add diff --git a/lang/pl/.config/mabox/right-prepend.csv b/lang/pl/.config/mabox/right-prepend.csv new file mode 100644 index 0000000..e1b240d --- /dev/null +++ b/lang/pl/.config/mabox/right-prepend.csv @@ -0,0 +1,5 @@ +# Format: +# Etykieta,komenda,ikona +# Przykład: +#^sep(Moje) +#Odtwarzacz VLC,vlc diff --git a/lang/pl/.config/mabox/settings.csv b/lang/pl/.config/mabox/settings.csv new file mode 100644 index 0000000..595dc43 --- /dev/null +++ b/lang/pl/.config/mabox/settings.csv @@ -0,0 +1,33 @@ +^sep(Ustawienia) +Centrum Sterowania Mabox,mcc,distributor-logo-mabox +^sep(Ustawienia panelu) +Dodaj/usuń programy...,jgtint2launcher,tint2 +Panel tint2,^pipe(jgtint2-pipe),tint2conf +^sep(Motywy Maboxa) +Zarządzaj motywami,mb-obthemes,preferences-desktop-theme +^sep(Pulpit) +Tapeta,jgwallpaperchanger -s,nitrogen +Konfiguruj Czcionki,colorizer-fonts -s,fonts +Colorizer,colorizer -s,colorizer +Wystrój i ikony,lxappearance,preferences-desktop-theme +Reload GTK,reload-gtk,reload +^sep() +Menu/Panele Boczne,^pipe(jgmenusettings-pipe),menu-editor +Zarządzaj Conky,colorizer-conky -s,desktop-effects +Kompozytor,jgpicom-pipe -s,compton +Powiadomienia,xfce4-notifyd-config,xfce4-notifyd +^sep() +Rozdzielczość ekranu,arandr,xfce4-display +Rozdzielczość ekranu (LXRandR),lxrandr,xfce4-display +^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,mate-power-manager +Mysz i klawiatura,lxinput,keyboard +^sep(Openbox) +OBconf,obconf-qt,openbox +Autostart,^checkout(autostart),geany +RC - plik konfiguracyjny,xdg-open ~/.config/openbox/rc.xml,geany +Rekonfiguruj Openbox,openbox --reconfigure,openbox +^sep() +Edytuj Menu ustawień,xdg-open ~/.config/mabox/settings.csv,geany diff --git a/lang/pl/.config/mabox/settings_tags.csv b/lang/pl/.config/mabox/settings_tags.csv new file mode 100644 index 0000000..2de2cba --- /dev/null +++ b/lang/pl/.config/mabox/settings_tags.csv @@ -0,0 +1,4 @@ +^tag(autostart) +^sep(Autostart) +Wybierz programy/usługi (GUI Edytor),yautostart,gtk-execute +Edycja pliku (zaawansowane),xdg-open ~/.config/openbox/autostart,geany diff --git a/lang/pl/.config/pyradio/stations.csv b/lang/pl/.config/pyradio/stations.csv new file mode 100644 index 0000000..20e2247 --- /dev/null +++ b/lang/pl/.config/pyradio/stations.csv @@ -0,0 +1,45 @@ +Chillout (Groove Salad - SomaFM),http://somafm.com/startstream=groovesalad.pls +Your Classical - Relax,http://relax.stream.publicradio.org/relax.mp3 +Ambient Sleeping Pill,http://radio.stereoscenic.com/asp-h +Synphaera Radio (Space Music),https://somafm.com/synphaera.pls +Polskie,- +Jedynka - Polskie Radio Program 1,http://mp3.polskieradio.pl:8900/ +Dwójka - Polskie Radio Program 2,http://stream3.polskieradio.pl:8952/;.mp3 +Trójka - Polskie Radio Program 3,http://41.dktr.pl:8000/trojka.ogg +Czwórka - Polskie Radio Program 4,http://stream3.polskieradio.pl:8906/;stream +Radio Katowice,http://stream4.nadaje.com:9212/radiokatowice +Radio WNET,http://media.wnet.fm/wnet.fm +Radio MARYJA,https://radiomaryja.fastcast4u.com/tunein/radiomaryja.pls +Radio eM,http://194.181.177.253:8000/listen.pls +Antyradio,https://n-16-12.dcs.redcdn.pl/sc/o2/Eurozet/live/antyradio.livx +RMF FM,http://217.74.72.4:8000/rmf_fm +Echoes of Bluemars,- +Bluemars,http://echoesofbluemars.org/bluemars.m3u +Cryosleep,http://streams.echoesofbluemars.org:8000/cryosleep.m3u +Voices from Within,http://streams.echoesofbluemars.org:8000/voicesfromwithin.m3u +Lofi,- +Lofi: Lofi Girl,https://play.streamafrica.net/lofiradio +Lofi: Chillhop,http://stream.zeno.fm/fyn8eh3h5f8uv +Lofi: Box Lofi,http://stream.zeno.fm/f3wvbbqmdg8uv +Lofi: The Bootleg Boy,http://stream.zeno.fm/0r0xa792kwzuv +Lofi: Radio Spinner,https://live.radiospinner.com/lofi-hip-hop-64 +Lofi: SmoothChill,https://media-ssl.musicradio.com/SmoothChill +SomaFM,- +Alternative (BAGeL Radio - SomaFM),http://somafm.com/bagel.pls +American Roots (Boot Liquor - SomaFM),http://somafm.com/bootliquor.pls +Celtic (ThistleRadio - SomaFM),http://somafm.com/thistle.pls +Atmospheric (Drone Zone - SomaFM),http://somafm.com/dronezone.pls +Ambient (Space Station - SomaFM),http://somafm.com/spacestation.pls +Covers (SomaFM),http://somafm.com/covers.pls +Downtempo (Secret Agent - SomaFM),http://somafm.com/secretagent.pls +Dub Step (Dub Step Beyond - SomaFM),http://somafm.com/dubstep.pls +Folk (Folk Forward - SomaFM),http://somafm.com/folkfwd.pls +House (Beat Blender - SomaFM),http://somafm.com/startstream=beatblender.pls +Indie Pop (Indie Pop Rocks! - SomaFM),http://somafm.com/indiepop130.pls +Intelligent dance music (Cliq Hop - SomaFM),http://somafm.com/startstream=cliqhop.pls +Jazz (Sonic Universe - SomaFM),http://somafm.com/startstream=sonicuniverse.pls +Lounge (Illinois Street Lounge - SomaFM),http://somafm.com/illstreet.pls +Pop (PopTron! - SomaFM),http://somafm.com/poptron.pls +Progressive (Tags Trance Trip - SomaFM),http://somafm.com/tagstrance.pls +Public Radio (WNYC - Public Radio from New York to the World),http://wnyc-iheart.streamguys.com/wnycfm-iheart.aac +Rock (Digitalis - SomaFM),http://somafm.com/digitalis.pls diff --git a/lang/pl/.config/tint2/Istredd.tint2rc b/lang/pl/.config/tint2/Istredd.tint2rc new file mode 100644 index 0000000..c4150d2 --- /dev/null +++ b/lang/pl/.config/tint2/Istredd.tint2rc @@ -0,0 +1,477 @@ +#---- Generated by tint2conf 9d1f ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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: Button, Egzekutor, 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPEPPPLTSEEPBCPP +panel_size = 95% 32 +panel_margin = 2 2 +panel_padding = 0 1 1 +panel_background_id = 1 +wm_menu = 1 +panel_dock = 0 +panel_pivot_struts = 0 +panel_position = top center horizontal +panel_layer = bottom +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 = 1 +urgent_nb_of_blink = 8 +task_maximum_size = 100 100 +task_padding = 4 4 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 = 2 2 2 +systray_background_id = 7 +systray_sort = ascending +systray_icon_size = 0 +systray_icon_asb = 100 0 0 +systray_monitor = 1 +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 6 2 2 +launcher_background_id = 7 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme = Papirus +launcher_icon_theme_override = 1 +startup_notifications = 0 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %H:%M +time2_format = +time1_font = sans 14 +time1_timezone = +time2_timezone = +time2_font = sans 6 +clock_font_color = #ffffff 100 +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 = jgclock ipc +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 = %p +bat2_format = +battery_padding = 4 0 +battery_background_id = 7 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_name = mb-t2wall +execp_command = jgwallpaperchanger icon +execp_interval = 60 +execp_has_icon = 1 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 0 +execp_monitor = all +execp_tooltip = L: Losowa Tapeta P: Menu Tapety +execp_lclick_command = jgwallpaperchanger lclick +execp_rclick_command = jgwallpaperchanger ipc +execp_mclick_command = +execp_uwheel_command = jgwallpaperchanger wheelup +execp_dwheel_command = jgwallpaperchanger wheeldown +execp_font = Symbols Nerd Font 16 +execp_font_color = #DDDDDD 100 +execp_padding = 1 1 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 30 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 4 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 16 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 7 +execp_centered = 1 + +#------------------------------------- +# Executor 3 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Aktualizacje, dyski, monitor logów , pacman cache, śmietnik +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu ipc +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #DDDDDD 100 +execp_padding = 1 1 +execp_background_id = 7 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy Panel (C-W-Lewa) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 0 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = L = Menu (W), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +## Button 3 "SHOW DESKTOP" +## To enable uncomment section below and add "P" to panel_items directive +#button = new +#button_icon = desktop +#button_text = +#button_tooltip = L: Pokaż pulpit, środkwy: Expose, P: Lista okien +#button_lclick_command = show_desktop +#button_rclick_command = jgdesktops ipc +#button_mclick_command = skippy-xd --expose +#button_uwheel_command = ~/.config/tint2/scripts/desktop next +#button_dwheel_command = ~/.config/tint2/scripts/desktop prev +#button_font = Symbols Nerd Font 14 +#button_font_color = #deddda 100 +#button_padding = 2 2 +#button_background_id = 7 +#button_centered = 1 +#button_max_icon_size = 0 + + +#------------------------------------- +# Button 5 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: Menadżer plików (W-f), P: Menu Miejsca (W-.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (W-t), R: Quake-term (F12) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Przeglądarka WWW (W-w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = L: Flameshot P: Zrzuty ekranu (W-PrtScr) +button_lclick_command = flameshot gui +button_rclick_command = mb-jgtools screenshot ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 9 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (W+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 10 +button = new +button_text =  +button_tooltip = Prawy SidePanel (C-W-Prawo) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +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/.config/tint2/dracula.tint2rc b/lang/pl/.config/tint2/dracula.tint2rc new file mode 100644 index 0000000..97a3f09 --- /dev/null +++ b/lang/pl/.config/tint2/dracula.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf dc5e ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #1e1f29 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #282a36 60 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #44475a 100 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:ET:FEEPSBECPP +panel_size = 90% 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #a89984 100 +task_active_font_color = #ddc7a1 100 +task_iconified_font_color = #928374 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #ff79c6 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Dzisiaj jest %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +execp_lclick_command = show_desktop +execp_rclick_command = skippy-xd-fix +execp_mclick_command = jgdesktops ipc +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #bd93f9 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #f1fa8c 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: Menadżer plików (super + f), P: Menu Miejsca (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Zrzuty ekranu (super+PrtScr) P: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f1fa8c 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Prawy Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #bd93f9 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #bd93f9 100 +tooltip_font = Rubik 10 + diff --git a/lang/pl/.config/tint2/fullwidth_transp_dark.tint2rc b/lang/pl/.config/tint2/fullwidth_transp_dark.tint2rc new file mode 100644 index 0000000..fdcb89d --- /dev/null +++ b/lang/pl/.config/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 = Papirus +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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = jgclock ipc +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 = jgtint2-pipe -s 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/.config/tint2/gradient.tint2rc b/lang/pl/.config/tint2/gradient.tint2rc new file mode 100644 index 0000000..69a59a2 --- /dev/null +++ b/lang/pl/.config/tint2/gradient.tint2rc @@ -0,0 +1,389 @@ +#---- Generated by tint2conf 6e9d ---- +# 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 = vertical +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: Inactive desktop name +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: Active desktop name, Active task +rounded = 2 +border_width = 1 +border_sides = TBLR +border_content_tint_weight = 10 +background_content_tint_weight = 0 +background_color = #292929 100 +border_color = #33d17a 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 taskbar, Battery, Clock, Inactive taskbar, Panel, Systray +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: Default task +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 = PPLT:S:B:CPP +panel_size = 100% 36 +panel_margin = 0 0 +panel_padding = 2 1 2 +panel_background_id = 4 +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.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 0 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 = 12 4 +taskbar_name_background_id = 2 +taskbar_name_active_background_id = 3 +taskbar_name_font = Ubuntu 10 +taskbar_name_font_color = #c0bfbc 100 +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 = 0 +urgent_nb_of_blink = 10 +task_maximum_size = 160 20 +task_padding = 4 4 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 = 7 +task_active_background_id = 3 +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 0 +systray_background_id = 4 +systray_sort = ascending +systray_icon_size = 28 +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_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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# Clock +time1_format = %a %e %b %k:%M +time2_format = +time1_font = Roboto Mono 10 +time1_timezone = +time2_timezone = +time2_font = Normal +clock_font_color = #f3f3ff 100 +clock_padding = 2 0 +clock_background_id = 4 +clock_tooltip = +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 10 +bat2_font = sans 0 +battery_font_color = #f3f3ff 100 +bat1_format = +bat2_format = +battery_padding = 1 0 +battery_background_id = 4 +battery_hide = 101 +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 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #777777 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Separator 3 +separator = new +separator_background_id = 0 +separator_color = #777777 81 +separator_style = empty +separator_size = 0 +separator_padding = 4 0 + +#------------------------------------- +# Button 1 +button = new +button_icon = arrow-left +button_text = +button_tooltip = Lewy panel boczny (ctrl + super + Left) +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 = 20 + +#------------------------------------- +# Button 2 +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 = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 0 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 32 + +#------------------------------------- +# Button 3 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = Wylogowanie... (super + x) +button_lclick_command = mb-jgtools mblogout 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 = 24 + +#------------------------------------- +# Button 4 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Prawy panel boczny (ctrl + super + Right) +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 = 20 + +#------------------------------------- +# 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/.config/tint2/gruvbox.tint2rc b/lang/pl/.config/tint2/gruvbox.tint2rc new file mode 100644 index 0000000..e4331b4 --- /dev/null +++ b/lang/pl/.config/tint2/gruvbox.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf 6723 ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #151515 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #202020 100 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #151515 100 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:ET:FEEPSBECPP +panel_size = 1900 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #a89984 100 +task_active_font_color = #ddc7a1 100 +task_iconified_font_color = #928374 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #d4be98 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Dzisiaj jest %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +execp_lclick_command = show_desktop +execp_rclick_command = jgdesktops ipc +execp_mclick_command = +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #d8a657 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: Menadżer plików (super + f), P: Menu Miejsca (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Zrzuty ekranu (super+PrtScr) P: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d4be98 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Prawy Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8a657 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #d8a657 100 +tooltip_font = Rubik 10 + diff --git a/lang/pl/.config/tint2/mabox2-top.tint2rc b/lang/pl/.config/tint2/mabox2-top.tint2rc new file mode 100644 index 0000000..97b17b6 --- /dev/null +++ b/lang/pl/.config/tint2/mabox2-top.tint2rc @@ -0,0 +1,385 @@ +#---- Generated by tint2conf 8d47 ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Egzekutor +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 = PPPPPPL:TESBCPP +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 1 +systray_background_id = 0 +systray_sort = ascending +systray_icon_size = 20 +systray_icon_asb = 100 0 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 = Papirus +launcher_icon_theme_override = 1 +startup_notifications = 1 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = Dziś jest %A %e dzień %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = Monospace 9 +bat2_font = Cantarell 0 +battery_font_color = #ffffff 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = dots +separator_size = 4 +separator_padding = 0 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 1 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 1 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 16 + +#------------------------------------- +# Button 1 +button = new +button_icon = arrow-left +button_text = +button_tooltip = Lewy panel (ctrl+win+left) +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 = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 3 +button = new +button_icon = desktop +button_text = +button_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +button_lclick_command = show_desktop +button_rclick_command = jgdesktops ipc +button_mclick_command = +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: Menu Miejsca (super+.), P: Menadżer plików (super + f) +button_lclick_command = mb-places ipc +button_rclick_command = exo-open --launch FileManager +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 1 2 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 4 4 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Prawy panel (ctrl+win+right) +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/.config/tint2/mabox2001.tint2rc b/lang/pl/.config/tint2/mabox2001.tint2rc new file mode 100644 index 0000000..48ecc70 --- /dev/null +++ b/lang/pl/.config/tint2/mabox2001.tint2rc @@ -0,0 +1,321 @@ +#---- 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPLTSBCPP +panel_size = 80% 34 +panel_margin = 4 4 +panel_padding = 1 1 4 +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.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 = 24 +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 = Papirus +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 = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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+win+left) +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 = 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 = jgtint2-pipe -s 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 = system-shutdown +button_text = +button_tooltip = Wylogowanie... (win+x) +button_lclick_command = mb-jgtools mblogout 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 = -1 +button_centered = 0 +button_max_icon_size = 24 + +#------------------------------------- +# Button 4 +button = new +button_icon = arrow-right +button_text = +button_tooltip = Prawy panel (ctrl+win+right) +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.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/.config/tint2/mabox2001neon.tint2rc b/lang/pl/.config/tint2/mabox2001neon.tint2rc new file mode 100644 index 0000000..606fde2 --- /dev/null +++ b/lang/pl/.config/tint2/mabox2001neon.tint2rc @@ -0,0 +1,453 @@ +#---- Generated by tint2conf dd94 ---- +# 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 = 2 +border_width = 1 +border_sides = B +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #666666 100 +border_color = #2c2c2c 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: Button, Egzekutor, 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 50 +border_color_hover = #222222 0 +background_color_pressed = #f1f1f1 0 +border_color_pressed = #ffffff 0 + +#------------------------------------- +# Panel +panel_items = PPPPPPLTSEPBECPP +panel_size = 80% 34 +panel_margin = 4 4 +panel_padding = 1 1 1 +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.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 = 2 2 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 = 24 +systray_icon_asb = 100 0 0 +systray_monitor = 1 +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 6 4 4 +launcher_background_id = 7 +launcher_icon_background_id = 0 +launcher_icon_size = 24 +launcher_icon_asb = 100 0 0 +launcher_icon_theme = BeautyLine +launcher_icon_theme_override = 1 +startup_notifications = 0 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = Dziś jest %A, %e dzień %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #deddda 100 +execp_padding = 2 2 +execp_background_id = 7 +execp_centered = 1 +execp_icon_w = 0 +execp_icon_h = 16 + +#------------------------------------- +# Executor 2 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy SidePanel (ctrl+win+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 0 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 2 +button = new +button_icon = distributor-logo-mabox +button_text = +button_tooltip = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font_color = #000000 100 +button_padding = 4 0 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_icon = desktop +button_text = +button_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +button_lclick_command = show_desktop +button_rclick_command = jgdesktops ipc +button_mclick_command = +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: Menadżer plików (super + f), P: Menu Miejsca (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal (super+t), R: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 5 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text =  +button_tooltip = L: Zrzuty ekranu (super+PrtScr) P: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 16 + +#------------------------------------- +# Button 8 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #deddda 100 +button_padding = 4 2 +button_background_id = 7 +button_centered = 1 +button_max_icon_size = 16 + +#------------------------------------- +# Button 9 +button = new +button_text =  +button_tooltip = Prawy SidePanel (ctrl+win+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #f6f5f4 100 +button_padding = 2 2 +button_background_id = 7 +button_centered = 0 +button_max_icon_size = 16 + +#------------------------------------- +# 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/.config/tint2/micro95_bottom.tint2rc b/lang/pl/.config/tint2/micro95_bottom.tint2rc new file mode 100644 index 0000000..a6504b1 --- /dev/null +++ b/lang/pl/.config/tint2/micro95_bottom.tint2rc @@ -0,0 +1,437 @@ +#---- Generated by tint2conf 82bc ---- +# 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 = PPPPPPLTFEPSBCPP +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 44 +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 +launcher_icon_theme_override = 1 +startup_notifications = 1 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = Dzisiaj jest %A, %e dzień %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #241f31 100 +execp_padding = 0 0 +execp_background_id = -1 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy Panel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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 = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = desktop +button_text = +button_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +button_lclick_command = show_desktop +button_rclick_command = jgdesktops ipc +button_mclick_command = +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: Menadżer plików (super + f), P: Menu Miejsca (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), P: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser 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 7 +button = new +button_text =  +button_tooltip = L: Zrzuty ekranu (super+PrtScr) P: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #241f31 100 +button_padding = 0 0 +button_background_id = -1 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +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 9 +button = new +button_text =  +button_tooltip = Prawy Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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/.config/tint2/micro95_top.tint2rc b/lang/pl/.config/tint2/micro95_top.tint2rc new file mode 100644 index 0000000..0767333 --- /dev/null +++ b/lang/pl/.config/tint2/micro95_top.tint2rc @@ -0,0 +1,437 @@ +#---- Generated by tint2conf 82bc ---- +# 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 = PPPPPPLTFEPSBCPP +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 = top 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 44 +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 +launcher_icon_theme_override = 1 +startup_notifications = 1 +launcher_tooltip = 1 +launcher_item_app = ~/.local/share/applications/calamares.desktop +launcher_apps_dir = ~/.config/tint2/launcherapps/ + +#------------------------------------- +# 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 = Dzisiaj jest %A, %e dzień %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +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 = %p +bat2_format = +battery_padding = 1 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +battery_rclick_command = +battery_mclick_command = +battery_uwheel_command = +battery_dwheel_command = +ac_connected_cmd = +ac_disconnected_cmd = + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #241f31 100 +execp_padding = 0 0 +execp_background_id = -1 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy Panel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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 = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s 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 = desktop +button_text = +button_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +button_lclick_command = show_desktop +button_rclick_command = jgdesktops ipc +button_mclick_command = +button_uwheel_command = ~/.config/tint2/scripts/desktop next +button_dwheel_command = ~/.config/tint2/scripts/desktop prev +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 4 +button = new +button_icon = system-file-manager +button_text = +button_tooltip = L: Menadżer plików (super + f), P: Menu Miejsca (super+.) +button_lclick_command = exo-open --launch FileManager +button_rclick_command = mb-places ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 5 +button = new +button_icon = utilities-terminal +button_text = +button_tooltip = L: Terminal emulator (super+t), P: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font_color = #000000 100 +button_padding = 0 0 +button_background_id = 0 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 6 +button = new +button_icon = www-browser +button_text = +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser 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 7 +button = new +button_text =  +button_tooltip = L: Zrzuty ekranu (super+PrtScr) P: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #241f31 100 +button_padding = 0 0 +button_background_id = -1 +button_centered = 0 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_icon = system-shutdown +button_text = +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +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 9 +button = new +button_text =  +button_tooltip = Prawy Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +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/.config/tint2/nordic.tint2rc b/lang/pl/.config/tint2/nordic.tint2rc new file mode 100644 index 0000000..43ded3b --- /dev/null +++ b/lang/pl/.config/tint2/nordic.tint2rc @@ -0,0 +1,457 @@ +#---- Generated by tint2conf b92b ---- +# See https://gitlab.com/o9000/tint2/wikis/Configure for +# full documentation of the configuration options. +#------------------------------------- +# Gradients +#------------------------------------- +# Backgrounds +# Background 1: Button, Panel, Podpowiedzi +rounded = 5 +border_width = 0 +border_sides = TBLR +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #1f232b 80 +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: Aktywne zadanie, Egzekutor, Zasobnik systemowy +rounded = 5 +border_width = 0 +border_sides = +border_content_tint_weight = 0 +background_content_tint_weight = 0 +background_color = #2b303c 100 +border_color = #000000 0 +background_color_hover = #000000 0 +border_color_hover = #000000 0 +background_color_pressed = #000000 0 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 3: Aktywne, Nazwa aktywnego pulpitu +rounded = 5 +border_width = 2 +border_sides = TBLR +border_content_tint_weight = 8 +background_content_tint_weight = 0 +background_color = #1f232b 80 +border_color = #000000 0 +gradient_id = 0 +background_color_hover = #99ad6a 100 +border_color_hover = #000000 0 +gradient_id_hover = 0 +background_color_pressed = #99ad6a 100 +border_color_pressed = #000000 0 +gradient_id_pressed = 0 + +# Background 4: +rounded = 5 +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 + +#------------------------------------- +# Panel +panel_items = PPPPPF:EET:FEPSBECPP +panel_size = 1900 42 +panel_margin = 7 7 +panel_padding = 4 4 4 +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.5 +autohide_hide_timeout = 0.2 +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 = multi_desktop +taskbar_hide_if_empty = 0 +taskbar_padding = 0 0 0 +taskbar_background_id = 0 +taskbar_active_background_id = 2 +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 = 8 0 +taskbar_name_background_id = 0 +taskbar_name_active_background_id = 3 +taskbar_name_font_color = #e8e8d3 100 +taskbar_name_active_font_color = #ffee99 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 = 3 +task_maximum_size = 140 32 +task_padding = 3 3 3 +task_font = Sans 9 +task_tooltip = 1 +task_thumbnail = 0 +task_thumbnail_size = 150 +task_font_color = #81a1c1 100 +task_active_font_color = #a3be8c 100 +task_iconified_font_color = #4c566a 100 +task_icon_asb = 50 -30 -30 +task_active_icon_asb = 100 0 0 +task_iconified_icon_asb = 50 -60 -60 +task_background_id = 0 +task_normal_background_id = 0 +task_active_background_id = 3 +task_iconified_background_id = 0 +mouse_left = toggle_iconify +mouse_middle = close +mouse_right = close +mouse_scroll_up = next_task +mouse_scroll_down = prev_task + +#------------------------------------- +# System tray (notification area) +systray_padding = 3 0 0 +systray_background_id = 2 +systray_sort = ascending +systray_icon_size = 24 +systray_icon_asb = 100 -20 -20 +systray_monitor = primary +systray_name_filter = + +#------------------------------------- +# Launcher +launcher_padding = 0 0 0 +launcher_background_id = 0 +launcher_icon_background_id = 0 +launcher_icon_size = 0 +launcher_icon_asb = 100 0 0 +launcher_icon_theme_override = 0 +startup_notifications = 0 +launcher_tooltip = 0 + +#------------------------------------- +# Clock +time1_format = %H %M +time2_format = +time1_font = Rubik 16 +time1_timezone = +time2_timezone = +clock_font_color = #d8dee9 100 +clock_padding = 2 0 +clock_background_id = 0 +clock_tooltip = Dzisiaj jest %A,%n%d %B +clock_tooltip_timezone = +clock_lclick_command = gsimplecal +clock_rclick_command = jgclock ipc +clock_mclick_command = +clock_uwheel_command = +clock_dwheel_command = + +#------------------------------------- +# Battery +battery_tooltip = 1 +battery_low_status = 10 +battery_low_cmd = +battery_full_cmd = +battery_font_color = #000000 100 +bat1_format = %p +bat2_format = +battery_padding = 0 0 +battery_background_id = 0 +battery_hide = 98 +battery_lclick_command = xfce4-power-manager-settings +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 = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Separator 2 +separator = new +separator_background_id = 0 +separator_color = #000000 0 +separator_style = dots +separator_size = 3 +separator_padding = 1 0 + +#------------------------------------- +# Executor 1 +execp = new +execp_command = ~/.config/tint2/scripts/audacious.sh 0 40 +execp_interval = 2 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = +execp_lclick_command = audtool --playback-playpause +execp_rclick_command = audtool --mainwin-show +execp_mclick_command = audtool --shutdown +execp_uwheel_command = audtool --playlist-reverse +execp_dwheel_command = audtool --playlist-advance +execp_font = Symbols Nerd Font 14 +execp_font_color = #a3be8c 100 +execp_padding = 12 5 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 12 +execp_icon_h = 12 + +#------------------------------------- +# Executor 2 +execp = new +execp_command = ~/.config/tint2/scripts/desktop info +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Pokaż pulpit, Kółko: Przełącz pulpit, P: Lista okien +execp_lclick_command = show_desktop +execp_rclick_command = jgdesktops ipc +execp_mclick_command = +execp_uwheel_command = ~/.config/tint2/scripts/desktop next +execp_dwheel_command = ~/.config/tint2/scripts/desktop prev +execp_font = Symbols Nerd Font 14 +execp_font_color = #8fbcbb 100 +execp_padding = 9 0 +execp_background_id = 2 +execp_centered = 1 +execp_icon_w = 20 +execp_icon_h = 20 + +#------------------------------------- +# Executor 3 +execp = new +execp_command = ~/.config/tint2/scripts/volumettf +execp_interval = 1 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 0 +execp_markup = 1 +execp_monitor = all +execp_tooltip = L: Mute/unmute, Kółko: Głośność, P: Radio Menu +execp_lclick_command = pactl set-sink-mute 0 toggle +execp_rclick_command = pavucontrol +execp_mclick_command = +execp_uwheel_command = amixer -q set Master 2%+ unmute +execp_dwheel_command = amixer -q set Master 5%- unmute +execp_font = Symbols Nerd Font 14 +execp_font_color = #8fbcbb 100 +execp_padding = 4 2 +execp_background_id = 2 +execp_centered = 0 +execp_icon_w = 0 +execp_icon_h = 0 + +#------------------------------------- +# Executor 4 +execp = new +execp_name = mb-status +execp_command = mb-status status +execp_interval = 60 +execp_has_icon = 0 +execp_cache_icon = 0 +execp_continuous = 1 +execp_markup = 1 +execp_monitor = all +execp_tooltip = Updates, discs status, size monitor for logs, pacman cache, trash can +execp_lclick_command = mb-status left +execp_rclick_command = mb-status menu +execp_mclick_command = +execp_uwheel_command = +execp_dwheel_command = +execp_font = Symbols Nerd Font 16 +execp_font_color = #dddddd 100 +execp_padding = 0 0 +execp_background_id = 0 +execp_centered = 1 + +#------------------------------------- +# Button 1 +button = new +button_text =  +button_tooltip = Lewy Sidepanel (ctrl+super+left) +button_lclick_command = mb-jgtools places +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 2 +button = new +button_text =  +button_tooltip = L = Menu (super), P = Ustawienia panelu +button_lclick_command = mb-jgtools main ipc +button_rclick_command = jgtint2-pipe -s ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 3 +button = new +button_text =  +button_tooltip = L: Menu Miejsca (super+.), P: Menadżer plików (super + f) +button_lclick_command = mb-places ipc +button_rclick_command = exo-open --launch FileManager +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 4 +button = new +button_text =  +button_tooltip = L: Terminal emulator (super+t), P: Quake-term (ctrl+~) +button_lclick_command = exo-open --launch TerminalEmulator +button_rclick_command = mabox-terminal +button_mclick_command = +button_uwheel_command = mabox-terminal +button_dwheel_command = mabox-terminal +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 34 + +#------------------------------------- +# Button 5 +button = new +button_text =  +button_tooltip = L: Przeglądarka WWW (super+w), P: Więcej +button_lclick_command = exo-open --launch WebBrowser +button_rclick_command = mb-webbrowser ipc +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 20 + +#------------------------------------- +# Button 6 +button = new +button_text =  +button_tooltip = L: Zrzuty ekranu (super+PrtScr) P: flameshot +button_lclick_command = mb-jgtools screenshot ipc +button_rclick_command = flameshot gui +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #d8dee9 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 7 +button = new +button_text = ⏻ +button_tooltip = L: Power menu (super+x) środkowy: Wyloguj teraz, P: Edytuj Power menu +button_lclick_command = mb-jgtools mblogout ipc +button_rclick_command = xdg-open ~/.config/mabox/exit.csv +button_mclick_command = openbox --exit +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 9 0 +button_background_id = 2 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Button 8 +button = new +button_text =  +button_tooltip = Prawy Sidepanel (ctrl+super+right) +button_lclick_command = mb-jgtools right +button_rclick_command = +button_mclick_command = +button_uwheel_command = +button_dwheel_command = +button_font = Symbols Nerd Font 14 +button_font_color = #8fbcbb 100 +button_padding = 2 0 +button_background_id = 1 +button_centered = 1 +button_max_icon_size = 0 + +#------------------------------------- +# Tooltip +tooltip_show_timeout = 0.5 +tooltip_hide_timeout = 0.2 +tooltip_padding = 10 10 +tooltip_background_id = 1 +tooltip_font_color = #ebcb8b 100 +tooltip_font = Rubik 10 +