#!/bin/bash me="colorizer-conky -s" CONKYDIR="$HOME/.config/conky" BASECONKY="$CONKYDIR/sysinfo_mbcolor.conkyrc" LNG=${LANG:0:2} if [ ! -f "${BASECONKY}" ]; then if [ -d "/usr/share/mabox/lang/$LNG/.config/conky" ]; then rsync -a /usr/share/mabox/lang/$LNG/.config/conky/* ${CONKYDIR}/ else rsync -a /usr/share/mabox/lang/en/.config/conky/* ${CONKYDIR}/ fi fi CNF_DIR="$HOME/.config/colorizer/conky" CNF_FILE="$CNF_DIR/conky.cfg" [ ! -d "$CNF_DIR" ] && mkdir -p "$CNF_DIR" if [ ! -f $CNF_FILE ]; then cat < ${CNF_FILE} update_notifications=true EOF fi case "$LANG" in pl*) COLORIZECONKY="Pokoloruj Conky" GENERATEFROMWP="Generuj z kolorów tapety" LIGHTBG="Jasne tło" DARKBG="Ciemne tło" GLOBALSETTINGS="Ustawienia globalne (zmień dla wszystkich)" DEFCOLOR="Domyślny kolor" COLOR="Kolor" BACKGROUND="Kolor tła" TRANSPARENT="Przezroczyste?" YES="Tak" NO="Nie" FONTS="Czcionka" SELECTFONT="Wybierz czcionkę..." INCREASE="Powiększ" DECREASE="Pomniejsz" OLINE="Obrys" SHADOW="Cień" DRAW="Rysuj" BORDERS="Obramowanie" INDSETTINGS="Ustawiania indywidualne" MORECONKIES="Więcej Conky..." CLICKTOSTART="Kliknij aby uruchomić" STARTALL="Uruchom wszystkie" RESET="Resetuj" RESETALL="Resetuj wszystkie" AREYOUSURE="Czy aby napewno?" ;; *) COLORIZECONKY="Colorize Conky" GENERATEFROMWP="Generate from wallpaper colors" LIGHTBG="Light Background" DARKBG="Dark Background" GLOBALSETTINGS="Global settings (apply to all)" DEFCOLOR="Default color" COLOR="Color" BACKGROUND="Background color" TRANSPARENT="Transparent?" YES="Yes" NO="No" FONTS="Font" SELECTFONT="Select Font..." INCREASE="Increase" DECREASE="Decrease" OLINE="Outline" SHADOW="Shadow" DRAW="Rysuj" BORDERS="Borders" INDSETTINGS="Individual settings" MORECONKIES="More Conkies Available" CLICKTOSTART="click to start" STARTALL="Start all" RESET="Reset" RESETALL="Reset all to defaults" AREYOUSURE="Are you sure?" ;; esac getvalues () { read WINTRANS <<< "$(grep own_window_transparent ${BASECONKY} | cut -d'=' -f2 | cut -d"," -f1)" read FONTDEF <<< "$(grep "font .*=.*,$" ${BASECONKY} | cut -d'=' -f2,3 |cut -d"'" -f2)" FONT=${FONTDEF%:*} FONTSIZE=${FONTDEF#*=} read WINCLR <<< "$(grep own_window_colour ${BASECONKY} | cut -d'=' -f2 | cut -d"'" -f2)" [[ $WINCLR =~ ^#.* ]] && : || WINCLR="#${WINCLR}" read CLR <<< "$(grep default_color ${BASECONKY} | cut -d'=' -f2 | cut -d"'" -f2)" [[ $CLR =~ ^#.* ]] && : || CLR="#${CLR}" read CLR0 <<< "$(grep color0 ${BASECONKY} | cut -d'=' -f2 | cut -d"'" -f2)" [[ $CLR0 =~ ^#.* ]] && : || CLR0="#${CLR0}" read CLR1 <<< "$(grep color1 ${BASECONKY} | cut -d'=' -f2 | cut -d"'" -f2)" [[ $CLR1 =~ ^#.* ]] && : || CLR1="#${CLR1}" read CLR2 <<< "$(grep color2 ${BASECONKY} | cut -d'=' -f2 | cut -d"'" -f2)" [[ $CLR2 =~ ^#.* ]] && : || CLR2="#${CLR2}" read OUTLINE <<< "$(grep draw_outline ${BASECONKY} | cut -d'=' -f2 | cut -d"," -f1)" read SHADES <<< "$(grep draw_shades ${BASECONKY} | cut -d'=' -f2 | cut -d"," -f1)" SHADOWS="no" [[ "$OUTLINE" == "true" ]] && SHADOWS="outline" [[ "$SHADES" == "true" ]] && SHADOWS="shadow" read BORD <<< "$(grep draw_borders ${BASECONKY} | cut -d'=' -f2 | cut -d"," -f1)" read STIP <<< "$(grep stippled_borders ${BASECONKY} | cut -d'=' -f2 | cut -d"," -f1)" } if pgrep -af "conky.*mbcolor" >/dev/null; then getvalues [[ "$WINTRANS" == false ]] && BG="bgcolor='$WINCLR'" || BG="" out+=("^sep($COLORIZECONKY)") out+=("^sep($GENERATEFROMWP)") out+=("$LIGHTBG,w2theme conky light;$me") out+=("$DARKBG,w2theme conky dark;$me") out+=("^sep($GLOBALSETTINGS)") out+=(" AbCd $DEFCOLOR (text and border),^pipe(mbclr '$CLR' conkyctl default_color_all DEFAULT_COLOR '$me')") out+=(" AbCd $COLOR 0 (text2),^pipe(mbclr '$CLR0' conkyctl color0_all COLOR_0 '$me')") out+=(" AbCd $COLOR 1 (bigger text),^pipe(mbclr '$CLR1' conkyctl color1_all COLOR_1 '$me')") out+=(" AbCd $COLOR 2 (bars/graphs),^pipe(mbclr '$CLR2' conkyctl color2_all COLOR_2 '$me')") out+=("^sep()") if [ "$WINTRANS" == false ];then out+=(" AbCd $BACKGROUND,^checkout(trans)") else out+=("transparent $BACKGROUND,^checkout(trans)") fi out2+=("^tag(trans)") out2+=("^sep($TRANSPARENT)") out2+=("$YES,conkyctl transparent_all true;$me") out2+=("$NO,conkyctl transparent_all false;$me") out2+=("^sep()") out2+=(" $BACKGROUND,^pipe(mbclr '$WINCLR' conkyctl win_bgcolor_all WIN_BGCOLOR '$me')") out+=("^sep()") out+=("$FONTS [ $FONT $FONTSIZE ],^checkout(font)") out2+=("^tag(font)") out2+=("^sep($FONTS)") out2+=("$SELECTFONT,mb-setfont conky_all;$me") out2+=("^sep()") out2+=("++ $INCREASE,conkyctl basefont_inc_all;$me") out2+=("-- $DECREASE,conkyctl basefont_dec_all;$me") out+=("$OLINE/$SHADOW [ $SHADOWS ],^checkout(outline)") out2+=("^tag(outline)") out2+=("^sep($DRAW $OLINE/$SHADOW?)") out2+=("$NO,conkyctl shades_all no;$me") out2+=("^sep()") out2+=("$DRAW $SHADOW,conkyctl shades_all shadow;$me") out2+=("$DRAW $OLINE,conkyctl shades_all outline;$me") out+=("^sep()") out+=("$BORDERS [ $BORD $STIP ],^checkout(border)") out2+=("^tag(border)") out2+=("^sep($DRAW $BORDERS?)") out2+=("$YES,conkyctl draw_borders_all true;$me") out2+=("$NO,conkyctl draw_borders_all false;$me") out2+=("^sep(STIPPLED BORDERS?)") out2+=("0,conkyctl stippled_borders_all 0;$me") out2+=("1,conkyctl stippled_borders_all 1;$me") out2+=("2,conkyctl stippled_borders_all 2;$me") out2+=("3,conkyctl stippled_borders_all 3;$me") out2+=("4,conkyctl stippled_borders_all 4;$me") #while read -r pid b c confpath #do # filename=${confpath##*/} # name=${filename%%_mb*} # out+=("${name^},^pipe(conkyctl single ${confpath})") #done < <(pgrep -af "conky.*mbcolor") # array with running conkies - only filenames with full path readarray -t running < <(pgrep -af "conky.*mbcolor" | cut -d' ' -f4) #array with all supported conkies for i in "$CONKYDIR"/*_mbcolor*; do supported+=("$i") done #array with not started conkies notstarted=($(echo ${running[@]} ${supported[@]} | tr ' ' '\n' | sort | uniq -u)) if [[ ${#running[@]} > 0 ]];then out+=("^sep($INDSETTINGS)") for c in ${running[@]};do filename=${c##*/} name=${filename%%_mb*} title=${name//_/ } out+=("${title^},^pipe(conkyctl single ${c})") done if [[ ${#notstarted[@]} > 0 ]];then out+=("^sep($MORECONKIES)") out+=("^sep($CLICKTOSTART)") for c in ${notstarted[@]};do filename=${c##*/} name=${filename%%_mb*} title=${name//_/ } out+=("${title^},conkyctl startone ${c};$me") done if [[ ${#notstarted[@]} > 1 ]];then out+=("^sep()") out+=("$STARTALL (${#notstarted[@]}),conkyctl startall;$me") fi fi fi out+=("^sep($RESET)") out+=("$RESETALL,^checkout(resetall)") out2+=("^tag(resetall)") out2+=("^sep($AREYOUSURE)") out2+=("$YES,rm $BASECONKY;$me") else out+=("^sep(No supported Conky running)") out+=("^sep($CLICKTOSTART)") for confpath in "$CONKYDIR"/*_mb*; do filename=${confpath##*/} name=${filename%%_mb*} title=${name//_/ } out+=("${title^},conkyctl startone ${confpath};$me") done out+=("^sep()") out+=("$STARTALL,conkyctl startall;$me") fi ### RUN if [[ "$1" == "-s" ]]; then . /usr/share/mb-jgtools/pipemenu-standalone.cfg . $HOME/.config/mabox/mabox.conf source $HOME/.config/colorizer/colorizer.conf out+=("^sep()") out+=(" ⮜⮜⮜ Colorizer,colorizer -s") if [[ "$colorizer_size" == "full" ]];then eval $(xdotool getdisplaygeometry --shell) MENU_HEIGHT_MIN="$HEIGHT" MENU_HEIGHT_MAX=$MENU_HEIGHT_MIN MENU_RADIUS="0" menu_margin_x="0" else MENU_VALIGN="center" menu_margin_x=${submenu_spacing:-0} fi MENU_HALIGN="left" jgmenu_icon_size=0 [ $(pidof picom) ] && MENU_RADIUS=$jgtools_radius [ -z $jgmenu_use_borders ] && menu_border=0 JGWIDTH=$((jgtools_padding + 278 + jgtools_padding)) MENU_PADDING_TOP=$((jgtools_padding + 158)) #WALLPAPER read WALLPATH<<< $(grep file "$HOME"/.config/nitrogen/bg-saved.cfg | cut -d'=' -f2) WALLPAPER=${WALLPATH##*/} THUMBDIR="$HOME/.config/mabox/wallthumbs" mkdir -p ${THUMBDIR} THUMB="${THUMBDIR}/${WALLPAPER}.png" if [[ ! -f "$THUMB" ]] then convert ${WALLPATH} -resize 270x150^ -gravity center -extent 270x150 ${THUMB} fi mkconfigfile cat < ${MENU_ITEMS} @icon,,$((jgtools_padding + 4)),$((jgtools_padding + 4)),270,150,4,left,top,,,${THUMB} #@icon,,$((jgtools_padding + 4)),$((jgtools_padding + 4)),270,150,4,left,top,,,/usr/share/mabox-colorizer/img/colorizer-conky.png @rect,,$((jgtools_padding + 244)),$((jgtools_padding + 6)),29,60,0,left,top,#FFFFFF 30,${WINCLR} 60, @rect,,$((jgtools_padding + 5)),$((jgtools_padding + 92)),29,60,0,left,top,#FFFFFF 30,${WINCLR} 60, @rect,,$((jgtools_padding + 36)),$((jgtools_padding + 112)),29,40,0,left,top,#FFFFFF 30,${WINCLR} 60, $(printf '%s\n' "${out[@]}") $(printf '%s\n' "${out2[@]}") EOF jgmenu --config-file=${CONFIG_FILE} --csv-file=${MENU_ITEMS} 2>/dev/null exit 0 fi printf '%s\n' "${out[@]}" printf '%s\n' "${out2[@]}"