upload
@@ -1,2 +1,4 @@
|
|||||||
# mabox-i18n-files
|
## Translated files for Mabox
|
||||||
|
- Conky
|
||||||
|
- Tint2 panels
|
||||||
|
- some menu parts
|
||||||
|
|||||||
213
common/.bashrc
Normal file
@@ -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}$(</etc/DIR_COLORS)"
|
||||||
|
[[ -z ${match_lhs} ]] \
|
||||||
|
&& type -P dircolors >/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 <file>
|
||||||
|
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
|
||||||
113
common/66-symbols.conf
Normal file
@@ -0,0 +1,113 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||||
|
|
||||||
|
<!--
|
||||||
|
When a glyph is missing in the current font freetype2 will look into
|
||||||
|
other installed fonts to see if it's going to find it, but which fonts?
|
||||||
|
and in which order?
|
||||||
|
|
||||||
|
The configuration below aim to declare an ordered list of fonts
|
||||||
|
to be looked into when a glyph is not found in a specic font
|
||||||
|
|
||||||
|
<alias>
|
||||||
|
<family>FONT_WITH_A_POSSIBLY_MISSING_GLYPH</family>
|
||||||
|
<prefer>
|
||||||
|
<family>FIRST_FONT_TO_LOOK_INTO</family>
|
||||||
|
<family>SECOND_FONT_TO_LOOK_INTO</family>
|
||||||
|
<family>...</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
-->
|
||||||
|
<fontconfig>
|
||||||
|
<alias>
|
||||||
|
<family>monospace</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>serif</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>sans-serif</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Noto Sans</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>JetBrains Mono</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>JetBrains Mono NL</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Inconsolata</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Roboto</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Serif</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Autour One</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Cantarell</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Ubuntu</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
<alias>
|
||||||
|
<family>Source Code Pro</family>
|
||||||
|
<prefer>
|
||||||
|
<family>Symbols Nerd Font</family>
|
||||||
|
<family>FontAwesome</family>
|
||||||
|
</prefer>
|
||||||
|
</alias>
|
||||||
|
</fontconfig>
|
||||||
49
common/autostart
Executable file
@@ -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) &
|
||||||
55
common/mimeapps.list
Normal file
@@ -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;
|
||||||
96
common/pacman.conf
Normal file
@@ -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
|
||||||
290
common/picom/configs/mabox-jaskier.conf
Normal file
@@ -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"
|
||||||
22
common/picom/include/conky-nobg.conf
Normal file
@@ -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;
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
22
common/picom/include/conky.conf
Normal file
@@ -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;
|
||||||
|
},
|
||||||
|
)
|
||||||
25
common/picom/include/jgmenu.conf
Normal file
@@ -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;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
133
common/picom/include/mabox-animations.conf
Normal file
@@ -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;
|
||||||
|
}
|
||||||
|
)
|
||||||
|
},
|
||||||
|
|
||||||
100
common/picom/include/mabox-rules.conf
Normal file
@@ -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"
|
||||||
|
},
|
||||||
|
)
|
||||||
19
common/picom/include/notifications.conf
Normal file
@@ -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;
|
||||||
|
}
|
||||||
|
)
|
||||||
9
common/picom/include/tint2.conf
Normal file
@@ -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;
|
||||||
|
|
||||||
6
common/picom/include/win-active.conf
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# NORMAL focused (active) windows
|
||||||
|
match = "focused && window_type = 'normal'";
|
||||||
|
blur-background = false;
|
||||||
|
shadow = true;
|
||||||
|
opacity = 1.0;
|
||||||
|
dim = 0;
|
||||||
7
common/picom/include/win-inactive.conf
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# NORMAL unfocused (inactive) windows
|
||||||
|
match = "!focused && window_type = 'normal'";
|
||||||
|
blur-background = true;
|
||||||
|
shadow = true;
|
||||||
|
opacity = 0.75;
|
||||||
|
dim = 0.1;
|
||||||
|
|
||||||
1530
common/rc.xml
Normal file
210
common/skippy-xd.rc
Normal file
@@ -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 <space> 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
|
||||||
36
common/terminator/2-3-grid.json
Normal file
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
24
common/terminator/config
Normal file
@@ -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]
|
||||||
26
common/volumettf
Executable file
@@ -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 "墳<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
elif [[ $vol -ge 70 ]]; then
|
||||||
|
echo "墳<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
elif [[ $vol -ge 60 ]]; then
|
||||||
|
echo "奔<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
elif [[ $vol -ge 50 ]]; then
|
||||||
|
echo "奔<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
elif [[ $vol -ge 30 ]]; then
|
||||||
|
echo "奔<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
elif [[ $vol -ge 10 ]]; then
|
||||||
|
echo "奄<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
elif [[ $vol -ge 0 ]]; then
|
||||||
|
echo "奄<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "婢<sup><span size='xx-small'> $vol%</span></sup>"
|
||||||
|
fi
|
||||||
17
lang/en/.config/blob/ArcDark/MBcolors.colorrc
Normal file
@@ -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
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
80
lang/en/.config/blob/ArcDark/conky/CPU_mbcolor.conkyrc
Normal file
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
71
lang/en/.config/blob/ArcDark/conky/Info_Bar_mbcolor.conkyrc
Normal file
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}}
|
||||||
|
]];
|
||||||
80
lang/en/.config/blob/ArcDark/conky/Network_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
92
lang/en/.config/blob/ArcDark/conky/PCmanFM_mbcolor.conkyrc
Normal file
@@ -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
|
||||||
|
]];
|
||||||
37
lang/en/.config/blob/ArcDark/conky/Polaroid_mbcolor.conkyrc
Normal file
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
81
lang/en/.config/blob/ArcDark/conky/RAM_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}]];
|
||||||
69
lang/en/.config/blob/ArcDark/conky/quoter_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
96
lang/en/.config/blob/ArcDark/conky/shortcuts_mbcolor.conkyrc
Normal file
@@ -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]
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
86
lang/en/.config/blob/ArcDark/conky/sysinfo_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
24
lang/en/.config/blob/ArcDark/mvars.txt
Normal file
@@ -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
|
||||||
BIN
lang/en/.config/blob/ArcDark/wpicon.png
Normal file
|
After Width: | Height: | Size: 9.0 KiB |
BIN
lang/en/.config/blob/ArcDark/wpicon_wide.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
17
lang/en/.config/blob/CyberPunk_Neon/MBcolors.colorrc
Normal file
@@ -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
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}}
|
||||||
|
]];
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}]];
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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]
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
24
lang/en/.config/blob/CyberPunk_Neon/mvars.txt
Normal file
@@ -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
|
||||||
BIN
lang/en/.config/blob/CyberPunk_Neon/wpicon.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
lang/en/.config/blob/CyberPunk_Neon/wpicon_wide.png
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
15
lang/en/.config/blob/Dracula/MBcolors.colorrc
Normal file
@@ -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
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
80
lang/en/.config/blob/Dracula/conky/CPU_mbcolor.conkyrc
Normal file
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
71
lang/en/.config/blob/Dracula/conky/Info_Bar_mbcolor.conkyrc
Normal file
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}}
|
||||||
|
]];
|
||||||
80
lang/en/.config/blob/Dracula/conky/Network_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
92
lang/en/.config/blob/Dracula/conky/PCmanFM_mbcolor.conkyrc
Normal file
@@ -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
|
||||||
|
]];
|
||||||
37
lang/en/.config/blob/Dracula/conky/Polaroid_mbcolor.conkyrc
Normal file
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
81
lang/en/.config/blob/Dracula/conky/RAM_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}]];
|
||||||
69
lang/en/.config/blob/Dracula/conky/quoter_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
96
lang/en/.config/blob/Dracula/conky/shortcuts_mbcolor.conkyrc
Normal file
@@ -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]
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
86
lang/en/.config/blob/Dracula/conky/sysinfo_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
24
lang/en/.config/blob/Dracula/mvars.txt
Normal file
@@ -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
|
||||||
BIN
lang/en/.config/blob/Dracula/wpicon.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
lang/en/.config/blob/Dracula/wpicon_wide.png
Normal file
|
After Width: | Height: | Size: 7.7 KiB |
17
lang/en/.config/blob/Gruvbox-Mabox/MBcolors.colorrc
Normal file
@@ -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
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
80
lang/en/.config/blob/Gruvbox-Mabox/conky/CPU_mbcolor.conkyrc
Normal file
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}%
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}}
|
||||||
|
]];
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
81
lang/en/.config/blob/Gruvbox-Mabox/conky/RAM_mbcolor.conkyrc
Normal file
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}]];
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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]
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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}
|
||||||
|
]];
|
||||||
@@ -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
|
||||||
|
]];
|
||||||
|
|
||||||
|
|
||||||
24
lang/en/.config/blob/Gruvbox-Mabox/mvars.txt
Normal file
@@ -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
|
||||||
BIN
lang/en/.config/blob/Gruvbox-Mabox/wpicon.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |